import { Chevron } from 'shared/components/navigation/primary.js' import { Ul, Li, Details, Summary, SumDiv, NoSumDiv, Deg } from 'shared/components/workbench/menu' import { round } from 'shared/utils.js' import Point from './point.js' const MoveLine = ({ op }) => const Curve = ({ op }) => ['cp1', 'cp2', 'to'].map(pnt => (
  • {pnt}
  • )) const Close = () => (

    Close

    ) const XrayPathOp = ({ op }) => (
  • {op.type === 'close' ? ( {op.type} ) : (
    {op.type} To
      {op.type === 'curve' ? : }
    ) }
  • ) const XrayPathOps = ({ ops=false }) => { if (!ops || ops.length < 1) return null return (
  • PathOps
      {ops.map(op => )}
  • ) } export default XrayPathOps