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