@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and PandaCSS
11 lines (8 loc) • 338 B
TypeScript
import { AllHTMLAttributes } from 'react';
import { BrandColors, PictoColors, Sizes } from './Logo.constants.js';
interface LogoProps extends Omit<AllHTMLAttributes<HTMLOrSVGElement>, 'size'> {
brandVariant?: keyof typeof BrandColors;
pictoVariant?: keyof typeof PictoColors;
size?: `${Sizes}`;
}
export type { LogoProps };