import React from 'react'; import Svg, { Path } from 'react-native-svg'; import { useTheme } from 'stream-chat-react-native'; import { IconProps } from '../utils/base'; export const CheckSend: React.FC = ({ height, width }) => { const { theme: { colors: { accent_blue }, }, } = useTheme(); return ( ); };