UNPKG

react-native-svg

Version:
22 lines (21 loc) 506 B
/// <reference types="react" /> import { NumberProp } from '../lib/extract/types'; import Shape from './Shape'; export default class Use extends Shape<{ x?: NumberProp; y?: NumberProp; width?: NumberProp; height?: NumberProp; xlinkHref?: string; href?: string; }> { static displayName: string; static defaultProps: { x: number; y: number; width: number; height: number; }; render(): JSX.Element; } export declare const RNSVGUse: any;