Repository URL to install this package:
|
Version:
3.0.1 ▾
|
@skava/ui
/
dist
/
components
/
presets
/
Checkout
/
ShippingMethodOption
/
ShippingMethodOption.d.ts
|
|---|
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;