react-native-svg
Version:
SVG library for react-native
33 lines (28 loc) • 754 B
JavaScript
import React from "react";
import { requireNativeComponent } from "react-native";
import extractProps from "../lib/extract/extractProps";
import Shape from "./Shape";
export default class Ellipse extends Shape {
static displayName = "Ellipse";
static defaultProps = {
cx: 0,
cy: 0,
rx: 0,
ry: 0,
};
render() {
const { props } = this;
const { cx, cy, rx, ry } = props;
return (
<RNSVGEllipse
ref={this.refMethod}
{...extractProps(props, this)}
cx={cx}
cy={cy}
rx={rx}
ry={ry}
/>
);
}
}
const RNSVGEllipse = requireNativeComponent("RNSVGEllipse");