···22 import Box from '$lib/components/box/Box.svelte';
33 import ChatBubble from '$lib/components/chat-bubble/ChatBubble.svelte';
44 import Heading from '$lib/components/heading/Heading.svelte';
55+ import Image from '$lib/components/image/Image.svelte';
66+77+ import cute from '$lib/assets/cute.jpg?as=run';
58</script>
69710<Heading class="mb-4">Chat Bubble</Heading>
···2225 <p>
2326 This is another really long message that should wrap around the chat bubble and not overflow
2427 </p>
2828+ </ChatBubble>
2929+3030+ <ChatBubble side="right" variant="secondary">
3131+ <p>This is me sending you an image</p>
3232+3333+ <Image src={cute} alt="cute cat" class="-mx-1.5 rounded-xl" />
2534 </ChatBubble>
2635</Box>