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) 669 B
import { Scale, Variant } from '../../variations'; export declare const BULLET_SIZES: readonly ["sm", "md"]; export type BulletSize = Extract<Scale, (typeof BULLET_SIZES)[number]>; export declare const BULLET_VARIANTS: readonly ["grey", "blue", "teal", "pink", "orange", "red", "green", "ultramarine", "yellow", "purple", "lime"]; export type BulletVariant = Extract<Variant, (typeof BULLET_VARIANTS)[number]>; export type BulletProperties = { /** * Bullet variant theme **/ variant?: BulletVariant; /** * Bullet custom color, overrides variant **/ customColor?: string; /** * Bullet size **/ size?: BulletSize; };