UNPKG

react-native-svg

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