Files
react-native-svg/elements/Use.js

15 lines
291 B
JavaScript

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;