UNPKG

react-native-svg

Version:
24 lines (23 loc) 601 B
import { ReactNode } from 'react'; import { CommonPathProps, NumberProp } from '../lib/extract/types'; import Shape from './Shape'; export interface UseProps extends CommonPathProps { children?: ReactNode; xlinkHref?: string; href?: string; width?: NumberProp; height?: NumberProp; x?: NumberProp; y?: NumberProp; opacity?: NumberProp; } export default class Use extends Shape<UseProps> { static displayName: string; static defaultProps: { x: number; y: number; width: number; height: number; }; render(): JSX.Element; }