Repository URL to install this package:
|
Version:
2.7.6 ▾
|
import { ReactNode } from 'react';
import { AnimatedCardState } from 'presets/AnimatedExpandableCard';
export interface ApprovalStatusRenderprop extends Function {
(props: ApprovalStatusProps): ReactNode;
}
export interface ApprovalStatusProps {
className?: string;
children?: ReactNode;
state?: AnimatedCardState;
renderUserInformation?: ApprovalStatusRenderprop;
renderOrderInformation?: ApprovalStatusRenderprop;
renderButton?: ApprovalStatusRenderprop;
renderWrapper?: ApprovalStatusRenderprop;
}