mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-06-23 05:49:16 +00:00
10 lines
333 B
JavaScript
10 lines
333 B
JavaScript
import * as React from 'react';
|
|
import { Component } from 'react';
|
|
import RNSVGDefs from '../fabric/DefsNativeComponent';
|
|
export default class Defs extends Component {
|
|
static displayName = 'Defs';
|
|
render() {
|
|
return /*#__PURE__*/React.createElement(RNSVGDefs, null, this.props.children);
|
|
}
|
|
}
|
|
//# sourceMappingURL=Defs.js.map
|