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) 611 B
import { Scale } from '../../variations'; export declare const LINK_VARIANTS: readonly ["default", "inverse", "grayed", "contextual", "high-contrast"]; export type LinkVariant = (typeof LINK_VARIANTS)[number]; export declare const LINK_SCALES: readonly ["sm", "md"]; export type LinkScale = Extract<Scale, (typeof LINK_SCALES)[number]>; export type LinkProperties = { /** * Scale of the link. Impacts the size of the text. * * @default 'md' **/ scale?: LinkScale; /** * Semantic variations of the link. * * @default 'default' */ variant?: LinkVariant; };