import React, {Component, PropTypes} from 'react'; import ViewBox from './ViewBox'; import G from './G'; class SymbolElement extends Component{ static displayName = 'Symbol'; static propType = { id: PropTypes.string.isRequired }; render() { let {props} = this; return {props.children} ; } } export default SymbolElement;