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