Repository URL to install this package:
|
Version:
2.0.18 ▾
|
import { ReactNode } from 'react';
export interface DashboardCardRenderProp extends Function {
(props: DashboardCardProps): ReactNode;
}
export interface DashboardCardProps {
className?: string;
children?: ReactNode;
renderHeading?: DashboardCardRenderProp;
renderDescription?: DashboardCardRenderProp;
renderButton?: DashboardCardRenderProp;
renderWrapper?: DashboardCardRenderProp;
}