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