import { Chevron } from 'shared/components/navigation/primary'
import { XrayPoint } from './point'
const MoveLine = ({ op }) =>
const Curve = ({ op }) => null
/*
['cp1', 'cp2', 'to'].map((pnt) => (
{pnt}
))
*/
const XrayPathOp = ({ op }) => null
/*
* (
{op.type === 'close' ? (
{op.type}
) : (
{op.type}
To
{op.type === 'curve' ? : }
)}
)
*/
export const XrayPathOps = ({ ops = false }) => null
/*
* {
if (!ops || ops.length < 1) return null
return (
path.ops
)
}
*/