mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 05:55:10 +00:00
18 lines
308 B
JavaScript
18 lines
308 B
JavaScript
import React, {
|
|
Component,
|
|
PropTypes
|
|
} 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;
|