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.

10 lines (9 loc) 302 B
import { Variant } from '../../variations'; export declare const FOOTER_VARIANTS: readonly ["neutral", "brand"]; export type FooterVariant = Extract<Variant, (typeof FOOTER_VARIANTS)[number]>; export type FooterProperties = { /** * Footer variant theme */ variant?: FooterVariant; };