import { useId } from 'react'; export function GridPattern({ width, height, x, y, squares, ...props }: any) { const patternId = useId(); return ( ); }