import { Chevron } from 'shared/components/navigation/primary'
import {
Ul,
Li,
Details,
Summary,
SumDiv,
NoSumDiv,
Deg,
} from 'shared/components/workbench/menus/index.mjs'
import { XrayPoint } 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
)
}