UNPKG

react-native-svg

Version:
15 lines (12 loc) 305 B
import React, {Component, PropTypes} from 'react'; import Defs from './Defs'; class Use extends Component{ static displayName = 'Use'; static propType = { href: PropTypes.string }; render() { return <Defs.Use {...this.props} />; } } export default Use;