@sikka/hawa
Version:
Modern UI Kit made with Tailwind
20 lines (17 loc) • 561 B
text/typescript
import React, { FC } from 'react';
interface StatTypes extends React.HTMLAttributes<HTMLDivElement> {
label?: string;
color?: string;
number?: string;
helperText?: any;
helperTextColor?: "default" | "positive" | "negative" | "muted";
chart?: any;
icon?: React.ReactNode;
variant?: "default" | "plain" | "contained" | "outlined" | "brutalist" | "dropshadow";
width?: "full" | "min" | "normal";
isLoading?: boolean;
className?: string;
clickable?: boolean;
}
declare const Stats: FC<StatTypes>;
export { Stats };