Repository URL to install this package:
|
Version:
2.1.16 ▾
|
import { ReactNode } from 'react'
import { CardState } from '@skava/ui/dist/components/organisms/ExpandableCard'
export interface UserStatusRenderProp extends Function {
(props: UserStatusProps): ReactNode
}
export interface UserStatusProps {
className?: string
children?: ReactNode
state?: CardState
dataQa?: string
// renderProps
renderTitle?: UserStatusRenderProp
renderStatusCard?: UserStatusRenderProp
renderSearch?: UserStatusRenderProp
renderStatus?: UserStatusRenderProp
renderWrapper?: UserStatusRenderProp
}