@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
15 lines (13 loc) • 324 B
TypeScript
declare const GROUP_NAME = "card";
declare enum Colors {
Blue = "blue",
Error = "error",
Green = "green",
Pink = "pink",
Purple = "purple",
Success = "success",
Warning = "warning",
Yellow = "yellow"
}
declare const DEFAULT_COLOR = Colors.Pink;
export { Colors, DEFAULT_COLOR, GROUP_NAME };