import React from 'react' import { ViewStyle } from 'react-native' import Svg, { Path } from 'react-native-svg' interface Props { width?: number height?: number style?: ViewStyle } export default function Blob({ width = 210, height = 212.5, style }: Props) { return ( ) }