function createStatCard
createStatCard(props: StatCardProps): HTMLDivElement

Create a stat card DOM element

Examples

const card = createStatCard({ value: 6, label: 'Total Checks', variant: 'default' });

const healthyCard = createStatCard({ value: 6, label: 'Healthy', variant: 'success' });

Parameters

Return Type

HTMLDivElement