import React from 'react'; import { Path } from 'react-native-svg'; import type { IllustrationSvgProps } from '../types'; import BaseSvg from '../BaseSvg'; import useMonoColor from '../hooks/useMonoColor'; const SentSketch = ({ testID, width, height }: IllustrationSvgProps) => { const { fill } = useMonoColor(); return ( ); }; export default SentSketch;