UNPKG

@snowball-tech/fractal

Version:

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

10 lines (7 loc) 248 B
import { AllHTMLAttributes } from 'react'; import { Sizes } from './Loader.constants.js'; interface LoaderProps extends Omit<AllHTMLAttributes<HTMLOrSVGElement>, 'size'> { label?: string; size?: `${Sizes}`; } export type { LoaderProps };