mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
20 lines
318 B
JavaScript
20 lines
318 B
JavaScript
import React, {
|
|
Component,
|
|
PropTypes,
|
|
ART
|
|
} 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;
|