Repository URL to install this package:
|
Version:
2.7.17 ▾
|
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
// renderProps
renderUserInformation?: ApprovalStatusRenderprop
renderOrderInformation?: ApprovalStatusRenderprop
renderButton?: ApprovalStatusRenderprop
renderWrapper?: ApprovalStatusRenderprop
}