import TextOnPath from '../text-on-path' import { getProps } from '../utils' const Path = (props) => { if (!props.path.render) return null const output = [] const pathId = 'path-' + props.part + '-' + props.name output.push( ) if (props.path.attributes.get('data-text')) output.push() return output } export default Path