semantic-ui-react
Version:
The official Semantic-UI-React integration.
35 lines (23 loc) • 801 B
TypeScript
import * as React from 'react';
import { SemanticCOLORS, SemanticShorthandContent, 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;
/** Shorthand for primary content. */
content?: SemanticShorthandContent;
/** 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;