mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
15 lines
343 B
JavaScript
15 lines
343 B
JavaScript
import React, { Component } from "react";
|
|
import { requireNativeComponent } from "react-native";
|
|
|
|
export default class extends Component {
|
|
static displayName = "Defs";
|
|
|
|
render() {
|
|
return <RNSVGDefs>{this.props.children}</RNSVGDefs>;
|
|
}
|
|
}
|
|
|
|
const RNSVGDefs = requireNativeComponent("RNSVGDefs", null, {
|
|
nativeOnly: {}
|
|
});
|