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.

11 lines (10 loc) 467 B
import { SkeletonBaseProperties } from '../skeleton-base/properties'; import { Scale } from '../../variations'; export declare const SKELETON_CIRCLE_SCALES: readonly ["sm", "md", "lg", "xl", "2xl", "3xl"]; export type SkeletonCircleScales = Extract<Scale, (typeof SKELETON_CIRCLE_SCALES)[number]>; export type SkeletonCircleProperties = SkeletonBaseProperties & { /** * Circle skeleton size (based on font sizes) */ scale?: SkeletonCircleScales; };