feat(fs.lab): LabDraft component
This commit is contained in:
parent
83ee572a36
commit
82c4242088
11 changed files with 443 additions and 0 deletions
|
@ -0,0 +1,10 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue