react-native-svg
Version:
SVG library for react-native
22 lines (18 loc) • 515 B
JavaScript
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');