Repository URL to install this package:
|
Version:
2.8.4 ▾
|
@skava/ui
/
dist
/
components
/
abstractions
/
B2B
/
DashboardOverview
/
DashboardCard
/
typings.d.ts
|
|---|
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;
}