Repository URL to install this package:
|
Version:
2.7.6 ▾
|
import { ReactNode } from 'react';
import { ExpandableState } from 'organisms/ExpandableCard';
export interface DeliveryInstructionRenderProp {
(props: DeliveryInstructionProps): ReactNode;
}
export interface DeliveryInstructionProps {
className?: string;
isSelected?: boolean;
state?: ExpandableState;
renderToggleButton?: DeliveryInstructionRenderProp;
renderExpandedView?: DeliveryInstructionRenderProp;
}