@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
23 lines (21 loc) • 525 B
TypeScript
declare const GROUP_NAME = "skeleton";
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"
}
export { Colors, DEFAULT_COLOR, GROUP_NAME, Shapes };