@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
16 lines (13 loc) • 394 B
TypeScript
import { Variants } from '../Typography/Typography.constants.js';
import 'react';
declare const GROUP_NAME = "avatar";
declare enum Sizes {
S = "s",
M = "m",
L = "l",
XL = "xl",
Fluid = "fluid"
}
declare const DEFAULT_SIZE = Sizes.M;
declare const sizeToTypographyVariant: Record<Sizes, `${Variants}`>;
export { DEFAULT_SIZE, GROUP_NAME, Sizes, sizeToTypographyVariant };