@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
11 lines (10 loc) • 379 B
JavaScript
import Box from "@mui/material/Box";
import { styled } from "@mui/material/styles";
export const PreviewErrorBox = styled(Box)(({ theme }) => ({
backgroundColor: theme.palette.error.main,
color: theme.palette.common.white,
}));
export const PreviewItemBox = styled(Box)(({ theme }) => ({
backgroundColor: theme.palette.grey[200],
color: 'inherit',
}));