UNPKG

react-native-svg

Version:
27 lines 780 B
import type { ReactNode } 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(): JSX.Element; } //# sourceMappingURL=Pattern.d.ts.map