Files
MattrixwvReactComponents/lib/component/message/MoltenMessageBlock.tsx

23 lines
387 B
TypeScript

import type { MessageBlockProps } from "$/types/Message";
import clsx from "clsx";
import MessageBlock from "./MessageBlock";
export default function MoltenMessageBlock(props: MessageBlockProps){
const {
className,
...messageProps
} = props;
return (
<MessageBlock
{...messageProps}
className={clsx(
className,
"bg-orange-100 text-orange-600"
)}
/>
);
}