import { Chevron } from 'shared/components/navigation/primary' import { Ul, Li, Details, Summary, SumDiv, NoSumDiv, Deg } from 'shared/components/workbench/menu' import Point from './point' const MoveLine = ({ op }) => const Curve = ({ op }) => ['cp1', 'cp2', 'to'].map((pnt) => (
  • {pnt}
  • )) const XrayPathOp = ({ op }) => (
  • {op.type === 'close' ? ( {op.type} ) : (
    {op.type} To
      {op.type === 'curve' ? : }
    )}
  • ) export const XrayPathOps = ({ ops = false }) => { if (!ops || ops.length < 1) return null return (
  • path.ops
      {ops.map((op) => ( ))}
  • ) }