mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-06-05 23:16:52 +00:00
29 lines
1.2 KiB
JavaScript
29 lines
1.2 KiB
JavaScript
/* eslint-disable react/no-unescaped-entities */
|
|
const ChatBubble = () => {
|
|
return <>
|
|
<div className="chat chat-start">
|
|
<div className="chat-bubble chat-bubble-primary">What kind of nonsense is this</div>
|
|
</div>
|
|
<div className="chat chat-start">
|
|
<div className="chat-bubble chat-bubble-secondary">Put me on the Council and not make me a Master!??</div>
|
|
</div>
|
|
<div className="chat chat-start">
|
|
<div className="chat-bubble chat-bubble-accent">That's never been done in the history of the Jedi. It's insulting!</div>
|
|
</div>
|
|
<div className="chat chat-end">
|
|
<div className="chat-bubble chat-bubble-info">Calm down, Anakin.</div>
|
|
</div>
|
|
<div className="chat chat-end">
|
|
<div className="chat-bubble chat-bubble-success">You have been given a great honor.</div>
|
|
</div>
|
|
<div className="chat chat-end">
|
|
<div className="chat-bubble chat-bubble-warning">To be on the Council at your age.</div>
|
|
</div>
|
|
<div className="chat chat-end">
|
|
<div className="chat-bubble chat-bubble-error">It's never happened before.</div>
|
|
</div>
|
|
</>
|
|
}
|
|
|
|
export default ChatBubble
|