fomantic-ui-react
Version:
Fomantic-UI React -- A React Component Library.
20 lines (19 loc) • 997 B
TypeScript
/// <reference types="react" />
import { StatisticProps } from './type';
declare const Statistic: {
({ as, ui, className, children, ...props }: StatisticProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
Value: {
({ as, className, content, children, ...props }: import("./type").StatisticValueProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Label: {
({ as, className, content, children, ...props }: import("./type").StatisticLabelProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
Group: {
({ as, className, children, ...props }: import("./type").StatisticGroupProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
};
export default Statistic;