UNPKG

semantic-ui-react

Version:
40 lines (26 loc) 1.08 kB
import * as React from 'react'; import { SemanticCOLORS, SemanticWIDTHS, SemanticShorthandCollection } from '../..'; import { StatisticProps, StatisticSizeProp } from './Statistic'; export interface StatisticGroupProps { [key: string]: any; /** An element type to render as (string or function). */ as?: any; /** Primary content. */ children?: React.ReactNode; /** Additional classes. */ className?: string; /** A statistic group can be formatted to be different colors. */ color?: SemanticCOLORS; /** A statistic group can present its measurement horizontally. */ horizontal?: boolean; /** A statistic group can present its measurement horizontally. */ inverted?:boolean; /** Array of props for Statistic. */ items?: SemanticShorthandCollection<StatisticProps>; /** A statistic group can vary in size. */ size?: StatisticSizeProp; /** A statistic group can have its items divided evenly. */ widths?: SemanticWIDTHS; } declare const StatisticGroup: React.StatelessComponent<StatisticGroupProps>; export default StatisticGroup;