Repository URL to install this package:
|
Version:
2.8.4 ▾
|
import { DashboardCardProps as DashboardCardPlaceholderProps } from 'abstractions/B2B/DashboardOverview';
export interface DashboardCardDetailsProps {
heading?: string;
description?: string;
buttonContent?: string;
pendingCount?: number | string;
}
export interface DashboardCardProps extends DashboardCardPlaceholderProps, DashboardCardDetailsProps {
onButtonClick?: Function;
headingDataQa?: string;
buttonDataQa?: string;
}