UNPKG

react-native-svg

Version:
19 lines (15 loc) 526 B
import React, { Component } from "react"; import { requireNativeComponent } from "react-native"; import extractClipPath from "../lib/extract/extractClipPath"; export default class extends Component { static displayName = "ClipPath"; render() { const { id, children } = this.props; return ( <RNSVGClipPath name={id} {...extractClipPath(this.props)}> {children} </RNSVGClipPath> ); } } const RNSVGClipPath = requireNativeComponent("RNSVGClipPath");