@engie-group/fluid-design-system
Version:
The Fluid Design System is ENGIE’s open-source library to create, build and deliver ENGIE digital services in a more efficient way.
13 lines (12 loc) • 336 B
TypeScript
export declare const SEGMENTED_CONTROL_SCALES: readonly ["sm", "md", "lg"];
export type SegmentedControlScale = typeof SEGMENTED_CONTROL_SCALES[number];
export type SegmentedControlProperties = {
/**
* Buttons scale
*/
scale?: SegmentedControlScale;
/**
* Selected button value
*/
value?: string;
};