import * as React from 'react'; import Svg, { SvgProps, Path } from 'react-native-svg'; import { memo } from 'react'; const SvgComponent = (props: SvgProps) => ( ); const WarningCircle = memo(SvgComponent); export default WarningCircle;