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