UNPKG

react-native-svg

Version:
28 lines 818 B
import type { ReactNode } from 'react'; import * as React from 'react'; import type { NumberProp, TransformProps, Units } from '../lib/extract/types'; import Shape from './Shape'; export interface PatternProps extends TransformProps { children?: ReactNode; id?: string; x?: NumberProp; y?: NumberProp; width?: NumberProp; height?: NumberProp; patternTransform?: TransformProps['transform']; patternUnits?: Units; patternContentUnits?: Units; viewBox?: string; preserveAspectRatio?: string; } export default class Pattern extends Shape<PatternProps> { static displayName: string; static defaultProps: { x: string; y: string; width: string; height: string; }; render(): React.JSX.Element; } //# sourceMappingURL=Pattern.d.ts.map