import React from 'react'; import Svg, { G, Path } from 'react-native-svg'; import { useTheme } from 'stream-chat-react-native'; import { IconProps } from '../utils/base'; export const Search: React.FC = ({ fill, height = 24, scale = 1, width = 24 }) => { const { theme: { colors: { black }, }, } = useTheme(); return ( ); };