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.

16 lines (15 loc) 1.57 kB
export declare const STATUS_PRIMARY_VARIANTS: readonly ["danger", "warning", "success", "information", "discovery", "planet"]; export type TStatusPrimaryVariants = (typeof STATUS_PRIMARY_VARIANTS)[number]; export declare const STATUS_CONTRAST_VARIANTS: readonly ["danger-contrast", "warning-contrast", "success-contrast", "information-contrast", "discovery-contrast", "planet-contrast"]; export type TStatusContrastVariants = (typeof STATUS_CONTRAST_VARIANTS)[number]; export declare const STATUS_VARIANTS: readonly ["danger", "warning", "success", "information", "discovery", "planet", "danger-contrast", "warning-contrast", "success-contrast", "information-contrast", "discovery-contrast", "planet-contrast"]; export type TStatusVariants = (typeof STATUS_VARIANTS)[number]; export declare const NEUTRAL_VARIANTS: readonly ["neutral", "primary", "secondary", "tertiary", "contrast", "inverse"]; export type TNeutralVariants = (typeof NEUTRAL_VARIANTS)[number]; export declare const BRAND_VARIANTS: readonly ["brand", "brand-contrast"]; export type TBrandVariants = (typeof BRAND_VARIANTS)[number]; export declare const ACCENT_VARIANTS: readonly ["grey", "blue", "teal", "pink", "orange", "red", "green", "ultramarine", "yellow", "purple", "lime"]; export type TAccentVariants = (typeof ACCENT_VARIANTS)[number]; export declare const ADDITIONAL_VARIANTS: readonly ["signature", "ai"]; export type TAdditionalVariants = (typeof ADDITIONAL_VARIANTS)[number]; export type Variant = TStatusVariants | TNeutralVariants | TBrandVariants | TAccentVariants | TAdditionalVariants;