UNPKG

react-native-svg

Version:
25 lines (19 loc) 663 B
import React, {Component, PropTypes} from 'react'; import createReactNativeComponentClass from 'react/lib/createReactNativeComponentClass'; import {ClipPathAttributes} from '../lib/attributes'; class ClipPath extends Component{ static displayName = 'ClipPath'; static propTypes = { id: PropTypes.string.isRequired }; render() { return <RNSVGClipPath name={this.props.id} >{this.props.children}</RNSVGClipPath>; } } const RNSVGClipPath = createReactNativeComponentClass({ validAttributes: ClipPathAttributes, uiViewClassName: 'RNSVGClipPath' }); export default ClipPath;