UNPKG

@cantoo/rn-svg

Version:
19 lines 469 B
import React from 'react'; import { NumberProp } from '../lib/extract/types'; import G from './G'; export default class ForeignObject extends G<{ x?: NumberProp; y?: NumberProp; width?: NumberProp; height?: NumberProp; }> { static displayName: string; static defaultProps: { x: string; y: string; width: string; height: string; }; render(): React.JSX.Element; } //# sourceMappingURL=ForeignObject.d.ts.map