@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and TailwindCSS
26 lines • 624 B
TypeScript
//#region src/components/Logo/Logo.constants.d.ts
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";
//#endregion
export { BrandColors, DEFAULT_BRAND_COLOR, DEFAULT_PICTO_COLOR, DEFAULT_SIZE, PictoColors, Sizes };
//# sourceMappingURL=Logo.constants.d.ts.map