@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
35 lines (31 loc) • 1.09 kB
TypeScript
import { ElementType } from 'react';
export { Variants as TitleVariants } from '../Typography/Typography.constants.js';
declare const GROUP_NAME = "paper";
declare enum Elevations {
Bordered = "1",
Elevated = "2",
Flat = "0",
Higher = "3",
Light = "light"
}
declare enum AlternateElevations {
Bordered = "bordered",
Elevated = "elevated",
Flat = "flat",
Higher = "higher"
}
declare const DEFAULT_ELEVATION = Elevations.Bordered;
declare const ELEVATIONS: {
readonly bordered: Elevations.Bordered;
readonly elevated: Elevations.Elevated;
readonly flat: Elevations.Flat;
readonly higher: Elevations.Higher;
readonly "1": Elevations.Bordered;
readonly "2": Elevations.Elevated;
readonly "0": Elevations.Flat;
readonly "3": Elevations.Higher;
readonly light: Elevations.Light;
};
declare const DEFAULT_TITLE_VARIANT = TypographyVariants.Heading4;
declare const DEFAULT_ELEMENT: ElementType;
export { AlternateElevations, DEFAULT_ELEMENT, DEFAULT_ELEVATION, DEFAULT_TITLE_VARIANT, ELEVATIONS, Elevations, GROUP_NAME };