1
0
Fork 0
freesewing/packages/freesewing.shared/components/workbench/menu/xray/path.js

26 lines
522 B
JavaScript
Raw Normal View History

import { Ul, Li, Details, Summary, NoSumDiv, Deg } from 'shared/components/workbench/menu'
import Attributes from './attributes.js'
import Ops from './path-ops.js'
2022-01-29 19:27:14 +01:00
/*
* Things to add
*
* ops
*/
2022-01-29 18:24:36 +01:00
const XrayPath = ({ path }) => (
<Ul>
<Li>
<NoSumDiv>
<Deg />
<span className="font-bold mr-2">Render =</span>
<span>{JSON.stringify(path.render)}</span>
</NoSumDiv>
</Li>
<Attributes attr={path.attributes} />
<Ops ops={path.ops} />
</Ul>
)
2022-01-29 18:24:36 +01:00
export default XrayPath