UNPKG

@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

14 lines (13 loc) 463 B
import * as React from 'react'; import { styled } from '@mui/material/styles'; import { getSurfaceColor } from "../../utils/colors"; const CodeStyled = styled('code')(({ theme }) => ({ backgroundColor: getSurfaceColor(theme), padding: '.15rem .3rem', fontSize: '.875rem', borderRadius: 4, })); const MessageMarkdownCode = (props) => { return (React.createElement(CodeStyled, { ...props })); }; export default MessageMarkdownCode;