react-native-art-svg
Version:
react native svg library
19 lines (16 loc) • 326 B
JavaScript
import React, {
Component,
PropTypes,
cloneElement
} from 'react-native';
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;