@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
18 lines (16 loc) • 446 B
TypeScript
declare const GROUP_NAME = "input-checkbox";
declare enum Variants {
Primary = "primary",
Secondary = "secondary",
Tertiary = "tertiary"
}
declare const DEFAULT_VARIANT = Variants.Primary;
declare enum Colors {
Blue = "blue",
Green = "green",
Pink = "pink",
Purple = "purple",
Yellow = "yellow"
}
declare const DEFAULT_COLOR = Colors.Pink;
export { Colors, DEFAULT_COLOR, DEFAULT_VARIANT, GROUP_NAME, Variants };