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 ChatsTab: React.FC = ({ active, height = 24, width = 24 }) => { const { theme: { colors: { black, grey }, }, } = useTheme(); return ( ); };