mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-06 21:53:57 -05:00
Most simple components created
This commit is contained in:
23
lib/component/message/TertiaryMessageBlock.tsx
Normal file
23
lib/component/message/TertiaryMessageBlock.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
import type { MessageBlockProps } from "$/types/Message";
|
||||
import clsx from "clsx";
|
||||
import MessageBlock from "./MessageBlock";
|
||||
|
||||
|
||||
export default function TertiaryMessageBlock(props: MessageBlockProps){
|
||||
const {
|
||||
className,
|
||||
...messageProps
|
||||
} = props;
|
||||
|
||||
|
||||
return (
|
||||
<MessageBlock
|
||||
{...messageProps}
|
||||
className={clsx(
|
||||
className,
|
||||
"bg-purple-200 text-purple-600"
|
||||
)}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user