stream-chat-react
Version:
React components to create chat conversations or livestream style chat
9 lines (8 loc) • 431 B
TypeScript
import React from 'react';
import type { ComponentPropsWithoutRef } from 'react';
export declare const Icon: {
MessageBubble: (props: ComponentPropsWithoutRef<'svg'>) => React.JSX.Element;
MessageBubbleEmpty: (props: ComponentPropsWithoutRef<'svg'>) => React.JSX.Element;
Reload: (props: ComponentPropsWithoutRef<'svg'>) => React.JSX.Element;
User: (props: ComponentPropsWithoutRef<'svg'>) => React.JSX.Element;
};