1
0
Fork 0
freesewing/packages/freesewing.shared/components/workbench/draft/circle/index.js
2022-01-25 11:22:09 +01: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