mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-07 14:13:58 -05:00
23 lines
392 B
TypeScript
23 lines
392 B
TypeScript
import type { MessageBlockProps } from "$/types/MessageTypes";
|
|
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"
|
|
)}
|
|
/>
|
|
);
|
|
}
|