@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) • 399 B
TypeScript
import { Variant } from '../../variations';
export declare const FOOTER_CARD_VARIANTS: readonly ["danger", "warning", "success", "information", "discovery", "planet", "neutral", "brand"];
export type FooterCardVariant = Extract<Variant, (typeof FOOTER_CARD_VARIANTS)[number]>;
export type FooterCardProperties = {
/**
* Footer card variant theme
*/
variant?: FooterCardVariant;
};