Repository URL to install this package:
|
Version:
2.1.14 ▾
|
import { ReactNode, ReactEventHandler } from 'react';
import { AnimatedCardState } from 'presets/AnimatedExpandableCard';
export interface OrderStatusRenderProp extends Function {
(props: OrderStatusProps): ReactNode;
}
export interface OrderStatusProps {
className?: string;
children?: ReactNode;
onPrintButtonClick?: ReactEventHandler<HTMLButtonElement>;
renderOrderStatus: OrderStatusRenderProp;
renderOrderDetails: OrderStatusRenderProp;
renderPrintIcon: OrderStatusRenderProp;
state?: AnimatedCardState;
}