import React from 'react'; import { ClipPath, Defs, Rect } from 'react-native-svg'; import type { IllustrationSvgProps } from '../types'; import BaseSvg from '../BaseSvg'; const ErrorIcon = ({ stroke, fill, testID, width, height, }: IllustrationSvgProps) => { return ( ); }; export default ErrorIcon;