21 lines
644 B
JavaScript
21 lines
644 B
JavaScript
import React, {Component} from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import createReactNativeComponentClass from '../lib/createReactNativeComponentClass';
|
|
import {ClipPathAttributes} from '../lib/attributes';
|
|
|
|
export default class 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('RNSVGClipPath', () => ({
|
|
validAttributes: ClipPathAttributes,
|
|
uiViewClassName: 'RNSVGClipPath'
|
|
}));
|