SpeechBubble

Description
StickyNotes are a take on the classic computer metaphor of a sticknote. They are often used to provide notes or additional information to the viewer.
SpeechBubble
The SpeechBubble component is used to create a colored bubble with a speech bubble tail. The SpeechBubble has the following props:
position(optional). Default value isb. Options aret(top),b(bottom),l(left),r(right),tl(top left),tr(top right),bl(bottom left),br(bottom right).shape(optional). Default value is''. Options areroundandcirclewhich affect the corner radius of the bubble.animation(optional). Default value is''. Options arepopandfloatcolor(optional) can be any of the color scheme options. If not provided, the default color isred-light.textAlign(optional) the text alignment of the content. Default isleft.maxWidth(optional) the maximum width of the speech bubble. Default is100%.borderWidth(optional) the width of the border. Default is1px.
Example:
vue
<SpeechBubble position="r" color="sky" shape="round" maxWidth="300px">
Hello, I'm a **speech bubble**! I'm a longer speech bubble. I'm still going.
</SpeechBubble>Renders as:
Hello, I'm a speech bubble! I'm a longer speech bubble. I'm still going.
vue
<SpeechBubble position="b" color="sky" shape="round" maxWidth="300px">
Hello, I'm a **speech bubble**! I'm a longer speech bubble. I'm still going.
</SpeechBubble>Renders as:
Hello, I'm a speech bubble! I'm a longer speech bubble. I'm still going.
vue
<SpeechBubble position="t" color="amber" shape="round" maxWidth="300px">
Hello, I'm a **speech bubble**! I'm a longer speech bubble. I'm still going.
</SpeechBubble>Renders as:
Hello, I'm a speech bubble! I'm a longer speech bubble. I'm still going.
If you want to position it somewhere arbitrary on the slide add v-drag to the admonition and also set the maxWidth to something fixed (e.g., 300px):
vue
<SpeechBubble position="t" color="sky" shape="round" maxWidth="300px" v-drag>
Hello, I'm a **speech bubble**! I'm a longer speech bubble. I'm still going.
</SpeechBubble>