UNPKG

@arolariu/components

Version:

🎨 70+ beautiful, accessible React components built on Radix UI. TypeScript-first, tree-shakeable, SSR-ready. Perfect for modern web apps, design systems & rapid prototyping. Zero config, maximum flexibility! ⚡

10 lines • 468 B
import * as React from "react"; interface HoleBackgroundProps extends React.HTMLAttributes<HTMLCanvasElement> { strokeColor?: string; numberOfLines?: number; numberOfDiscs?: number; particleRGBColor?: [number, number, number]; } declare const HoleBackground: React.ForwardRefExoticComponent<HoleBackgroundProps & React.RefAttributes<HTMLCanvasElement>>; export { HoleBackground, type HoleBackgroundProps }; //# sourceMappingURL=hole-background.d.ts.map