1
0
Fork 0
freesewing/sites/shared/components/workbench/draft/circle/index.js

11 lines
230 B
JavaScript
Raw Normal View History

2022-01-25 11:22:09 +01:00
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