@trellixio/roaster-coffee
Version:
Beans' product component library
19 lines • 786 B
TypeScript
import * as React from 'react';
export interface StatCardProps {
/** The title of the statistic. */
title: React.ReactNode;
/** The value of the statistic. */
value: React.ReactNode;
/** The description of the statistic. */
description?: React.ReactNode;
/** The progress value of the statistic (optional). */
progressValue?: number;
/** The label for the progress value (optional). */
progressLabel?: string;
/** Additional CSS class name for custom styling (optional). */
className?: string;
/** Inline styles for the StatCard (optional). */
style?: React.CSSProperties;
}
export declare const StatCard: React.ForwardRefExoticComponent<StatCardProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=StatCard.d.ts.map