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