@plteam/chat-ui
Version:
CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript
7 lines (6 loc) • 358 B
JavaScript
import * as React from 'react';
import Box from '@mui/material/Box';
const MessageComponentBox = ({ isUser, children, ...boxProps }) => {
return (React.createElement(Box, { ...boxProps, justifyContent: isUser ? 'flex-end' : 'flex-start', display: "flex", width: "100%", boxSizing: "border-box" }, children));
};
export default MessageComponentBox;