Repository URL to install this package:
|
Version:
2.7.17 ▾
|
import { ReactNode } from 'react'
export interface OrderStatusRenderProp {
(props: OrderStatusProps): ReactNode
}
export interface OrderStatusProps {
className?: string
children?: ReactNode
/**
* render props
*/
renderOrderStatus?: OrderStatusRenderProp
renderActionButton?: OrderStatusRenderProp
renderStatusWrapper?: OrderStatusRenderProp
}