UNPKG

@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.

20 lines (19 loc) 672 B
import { Scale } from '../../variations'; export declare const FOOTER_ITEM_SCALES: readonly ["sm", "md"]; export type FooterItemScale = Extract<Scale, (typeof FOOTER_ITEM_SCALES)[number]>; export declare const FOOTER_ITEM_PADDING: readonly ["xs", "sm", "md", "lg"]; export type FooterItemPadding = Extract<Scale, (typeof FOOTER_ITEM_PADDING)[number]>; export type FooterItemProperties = { /** * Scale of the footer item. Impacts the size of the text. * * @default 'sm' **/ scale?: FooterItemScale; /** * Padding of the footer item. Impacts the size of the item. * * @default 'md' **/ padding?: FooterItemPadding; };