import { type SVGProps, useId } from "react"; interface PlusSignsProps extends SVGProps { className?: string; } export const PlusSigns = ({ className, ...props }: PlusSignsProps) => { const GAP = 16; const STROKE_WIDTH = 1; const PLUS_SIZE = 6; const id = useId(); const patternId = `plus-pattern-${id}`; return ( ); };