UNPKG

@snowball-tech/fractal

Version:

Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS

22 lines (19 loc) 557 B
import { Variants } from '../Typography/Typography.constants.js'; import 'react'; declare const GROUP_NAME = "tag"; declare enum Sizes { S = "s", M = "m" } declare const DEFAULT_SIZE = Sizes.S; declare const sizeToTypographyVariant: Record<Sizes, `${Variants}`>; declare enum Colors { Blue = "blue", Green = "green", Pink = "pink", Purple = "purple", White = "white", Yellow = "yellow" } declare const DEFAULT_COLOR = Colors.Pink; export { Colors, DEFAULT_COLOR, DEFAULT_SIZE, GROUP_NAME, Sizes, sizeToTypographyVariant };