UNPKG

@snowball-tech/fractal

Version:

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

11 lines (8 loc) 290 B
import { AllHTMLAttributes, ReactNode } from 'react'; import { Shapes, Colors } from './Skeleton.constants.js'; interface SkeletonProps extends AllHTMLAttributes<HTMLDivElement> { shape: `${Shapes}`; children?: ReactNode; color?: `${Colors}`; } export type { SkeletonProps };