@appbuckets/react-ui
Version:
Just Another React UI Framework
10 lines (9 loc) • 369 B
TypeScript
import { ShorthandCollection } from '@appbuckets/react-ui-core';
import { UIMutableComponentProps } from '../generic';
import { LabelProps } from './Label.types';
export interface LabelGroupProps
extends UIMutableComponentProps<StrictLabelGroupProps> {}
export interface StrictLabelGroupProps {
/** Labels Shorthand */
labels?: ShorthandCollection<LabelProps>;
}