react-native-svg
Version:
SVG library for react-native
19 lines (18 loc) • 425 B
TypeScript
/// <reference types="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(): JSX.Element;
}