Repository URL to install this package:
|
Version:
2.8.0-studio-release ▾
|
import { ReactNode } from 'react'
// render prop interface
export interface DashboardCardRenderProp extends Function {
(props: DashboardCardProps): ReactNode
}
// component main props
export interface DashboardCardProps {
className?: string
children?: ReactNode
// renderProps
renderHeading?: DashboardCardRenderProp
renderDescription?: DashboardCardRenderProp
renderButton?: DashboardCardRenderProp
renderWrapper?: DashboardCardRenderProp
}