UNPKG

react-native-svg

Version:
22 lines (18 loc) 515 B
import React from 'react'; import { requireNativeComponent } from 'react-native'; import extractProps, { propsAndStyles } from '../lib/extract/extractProps'; import Shape from './Shape'; export default class Path extends Shape { static displayName = 'Path'; render() { const { props } = this; return ( <RNSVGPath ref={this.refMethod} {...extractProps(propsAndStyles(props), this)} d={props.d} /> ); } } const RNSVGPath = requireNativeComponent('RNSVGPath');