Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / presets / Checkout / ShippingMethodOption / ShippingMethodOption.d.ts
Size: Mime:
import React from 'react';
import { defaultRenderHeader, defaultRenderIcon } from 'molecules/ToggleList';
import { ShippingMethodOptionListProps } from './typings';
import { defaultRenderText } from './renderProps';
declare class ShippingMethodOption extends React.PureComponent<ShippingMethodOptionListProps> {
    static defaultProps: {
        className: string;
        title: string;
        renderHeader: typeof defaultRenderHeader;
        renderIcon: typeof defaultRenderIcon;
        renderText: typeof defaultRenderText;
        selectedDataQa: string;
        unselectedDataQa: string;
    };
    render(): JSX.Element;
}
export { ShippingMethodOption };
export default ShippingMethodOption;