1
0
Fork 0
freesewing/packages/react-components/src/pattern/grid.mjs

13 lines
251 B
JavaScript
Raw Normal View History

import React from 'react'
export const Grid = ({ stack, stackName }) => (
<rect
x={stack.topLeft.x}
y={stack.topLeft.y}
width={stack.width}
height={stack.height}
className="grid"
fill={'url(#grid-' + stackName + ')'}
/>
)