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 StreamLogo: React.FC = ({ height = 40, width = 80 }) => { const { theme: { colors: { accent_blue }, }, } = useTheme(); return ( ); };