mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
15 lines
291 B
JavaScript
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;
|