1
0
Fork 0
freesewing/sites/shared/components/workbench/draft/circle/index.js
2022-06-17 12:02:09 +02:00

10 lines
230 B
JavaScript

const Circle = (props) => (
<circle
cx={props.point.x}
cy={props.point.y}
r={props.point.attributes.get('data-circle')}
{...props.point.attributes.asPropsIfPrefixIs('data-circle-')}
/>
)
export default Circle