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