UNPKG

norma-library

Version:

Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.

13 lines (11 loc) 231 B
export interface ChatProps { name: string; message: string; emotion?: React.ReactNode; emotionReplay?: React.ReactNode; time: string; send: 'me' | 'replay'; } export interface ChatMessageProps { data: ChatProps[]; }