UNPKG

react-native-svg

Version:
27 lines 775 B
import type { ReactElement } from 'react'; import * as React from 'react'; import type { NumberProp, TransformProps, Units } from '../lib/extract/types'; import Shape from './Shape'; export interface RadialGradientProps { children?: ReactElement[]; fx?: NumberProp; fy?: NumberProp; rx?: NumberProp; ry?: NumberProp; cx?: NumberProp; cy?: NumberProp; r?: NumberProp; gradientUnits?: Units; gradientTransform?: TransformProps['transform']; id?: string; } export default class RadialGradient extends Shape<RadialGradientProps> { static displayName: string; static defaultProps: { cx: string; cy: string; r: string; }; render(): React.JSX.Element; } //# sourceMappingURL=RadialGradient.d.ts.map