@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.
14 lines (13 loc) • 434 B
TypeScript
import { Scale } from '../../variations';
export declare const DIVIDER_SCALES: readonly ["2xs", "xs", "sm", "md", "lg", "xl", "2xl", "3xl"];
export type DividerScales = Extract<Scale, (typeof DIVIDER_SCALES)[number]> | 'none';
export type DividerProperties = {
/**
* Spacing around the divider
*/
scale?: DividerScales;
/**
* Whether the divider is vertical or horizontal
*/
vertical?: boolean;
};