@arolariu/components
Version:
A collection of reusable components for React applications, built as ESM & CJS modules with tree shake, minify and bundler optimizations enabled, for the lowest bundle size (import cost)! 😍
10 lines (9 loc) • 423 B
TypeScript
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 };