@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and TailwindCSS
23 lines • 564 B
TypeScript
//#region src/components/Skeleton/Skeleton.constants.d.ts
declare enum Colors {
Blue = "blue",
Green = "green",
Pink = "pink",
Purple = "purple",
Yellow = "yellow",
Black = "black",
DarkGrey = "dark-grey",
Grey = "grey",
LightGrey = "light-grey",
White = "white"
}
declare const DEFAULT_COLOR = Colors.Grey;
declare enum Shapes {
Circle = "circle",
Rectangle = "rectangle",
RoundedRectangle = "roundedRectangle",
Square = "square"
}
//#endregion
export { Colors, DEFAULT_COLOR, Shapes };
//# sourceMappingURL=Skeleton.constants.d.ts.map