carbon-react
Version:
A library of reusable React components for easily building user interfaces.
7 lines (6 loc) • 447 B
TypeScript
export declare const POD_SIZES: readonly ["extra-small", "small", "medium", "large", "extra-large"];
export declare const POD_ALIGNMENTS: readonly ["left", "center", "right"];
export declare const POD_VARIANTS: readonly ["primary", "secondary", "tertiary", "tile", "transparent"];
export type PodSize = (typeof POD_SIZES)[number];
export type PodAlignment = (typeof POD_ALIGNMENTS)[number];
export type PodVariant = (typeof POD_VARIANTS)[number];