@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) • 358 B
TypeScript
import { Scale } from '../../variations';
export declare const LIST_SCALES: readonly ["sm", "md", "lg"];
export type ListScale = Extract<Scale, (typeof LIST_SCALES)[number]>;
export type ListProperties = {
/**
* Whether list items have borders
*/
hasBorder?: boolean;
/**
* Size of the list items
*/
scale?: ListScale;
};