UNPKG

@snowball-tech/fractal

Version:

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

10 lines (7 loc) 253 B
import { AllHTMLAttributes, ReactNode } from 'react'; import { Colors } from './CuteIcon.constants.js'; interface CuteIconProps extends AllHTMLAttributes<HTMLDivElement> { icon: ReactNode; color?: `${Colors}`; } export type { CuteIconProps };