MCPcopy
hub / github.com/Codehagen/Badget / DotPatternProps

Interface DotPatternProps

src/components/ui/dot-pattern.tsx:20–31  ·  view source on GitHub ↗

* DotPattern Component Props * * @param {number} [width=16] - The horizontal spacing between dots * @param {number} [height=16] - The vertical spacing between dots * @param {number} [x=0] - The x-offset of the entire pattern * @param {number} [y=0] - The y-offset of the entire pattern * @para

Source from the content-addressed store, hash-verified

18 * @param {boolean} [glow=false] - Whether dots should have a glowing animation effect
19 */
20interface DotPatternProps extends React.SVGProps<SVGSVGElement> {
21 width?: number;
22 height?: number;
23 x?: number;
24 y?: number;
25 cx?: number;
26 cy?: number;
27 cr?: number;
28 className?: string;
29 glow?: boolean;
30 [key: string]: unknown;
31}
32
33/**
34 * DotPattern Component

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected