@papernote/ui
Version:
A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive
16 lines • 537 B
TypeScript
export interface StatCardProps {
icon: React.ReactNode;
label: string;
value: string | number | React.ReactNode;
subtitle?: string;
valueColor?: string;
iconColor?: string;
change?: {
value: number;
isPositive: boolean;
};
onClick?: () => void;
className?: string;
}
export default function StatCard({ icon, label, value, subtitle, valueColor, iconColor, change, onClick, className, }: StatCardProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=StatCard.d.ts.map