UNPKG

@snowball-tech/fractal

Version:

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

12 lines (11 loc) 425 B
import { BrandColors, PictoColors, Sizes } from "./Logo.constants.js"; import { AllHTMLAttributes } from "react"; //#region src/components/Logo/Logo.types.d.ts interface LogoProps extends Omit<AllHTMLAttributes<HTMLOrSVGElement>, 'size'> { brandVariant?: keyof typeof BrandColors; pictoVariant?: keyof typeof PictoColors; size?: `${Sizes}`; } //#endregion export { LogoProps }; //# sourceMappingURL=Logo.types.d.ts.map