UNPKG

semantic-ui-react

Version:
32 lines (21 loc) 695 B
import * as React from 'react'; import { SemanticCOLORS, SemanticSIZES } from '../..'; export interface LabelGroupProps { [key: string]: any; /** An element type to render as (string or function). */ as?: any; /** Primary content. */ children?: React.ReactNode; /** Labels can share shapes. */ circular: boolean; /** Additional classes. */ className?: string; /** Label group can share colors together. */ color?: SemanticCOLORS; /** Label group can share sizes together. */ size?: SemanticSIZES; /** Label group can share tag formatting. */ tag?: boolean; } declare const LabelGroup: React.StatelessComponent<LabelGroupProps>; export default LabelGroup;