mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-06 13:43:59 -05:00
23 lines
392 B
TypeScript
23 lines
392 B
TypeScript
import type { MessageBlockProps } from "$/types/Message";
|
|
import clsx from "clsx";
|
|
import MessageBlock from "./MessageBlock";
|
|
|
|
|
|
export default function SecondaryMessageBlock(props: MessageBlockProps){
|
|
const {
|
|
className,
|
|
...messageProps
|
|
} = props;
|
|
|
|
|
|
return (
|
|
<MessageBlock
|
|
{...messageProps}
|
|
className={clsx(
|
|
className,
|
|
"bg-neutral-200 text-neutral-600"
|
|
)}
|
|
/>
|
|
);
|
|
}
|