@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
26 lines (24 loc) • 591 B
TypeScript
declare const GROUP_NAME = "logo";
declare enum Sizes {
S = "s",
M = "m",
L = "l",
XL = "xl",
Fluid = "fluid"
}
declare const DEFAULT_SIZE = Sizes.Fluid;
declare const PictoColors: {
dark: string;
light: string;
none: string;
primary: string;
};
declare const DEFAULT_PICTO_COLOR = "dark";
declare const BrandColors: {
dark: string;
light: string;
none: string;
primary: string;
};
declare const DEFAULT_BRAND_COLOR = "dark";
export { BrandColors, DEFAULT_BRAND_COLOR, DEFAULT_PICTO_COLOR, DEFAULT_SIZE, GROUP_NAME, PictoColors, Sizes };