UNPKG

react-native-svg

Version:
21 lines 579 B
import * as React from 'react'; import type { CommonPathProps, NumberProp } from '../lib/extract/types'; import Shape from './Shape'; export interface EllipseProps extends CommonPathProps { cx?: NumberProp; cy?: NumberProp; opacity?: NumberProp; rx?: NumberProp; ry?: NumberProp; } export default class Ellipse extends Shape<EllipseProps> { static displayName: string; static defaultProps: { cx: number; cy: number; rx: number; ry: number; }; render(): React.JSX.Element; } //# sourceMappingURL=Ellipse.d.ts.map