@useloops/design-system
Version:
The official React based Loops design system
13 lines (10 loc) • 315 B
TypeScript
import { GenericSizeMap } from '../../BrandCore/primitiveVariables.js';
type InputSizing = Exclude<GenericSizeMap, 'none'>;
type SelectOption = {
label: string;
value: string;
};
type GroupSelectOption = SelectOption & {
group: string;
};
export type { GroupSelectOption, InputSizing, SelectOption };