From 5bc1e63756cae6974430f1e6cf1a4d5e88f5b9cc Mon Sep 17 00:00:00 2001 From: Yasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com> Date: Thu, 18 Jun 2026 23:19:10 +0900 Subject: Initial commit --- src/components/MessageBubble.astro | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/components/MessageBubble.astro (limited to 'src/components/MessageBubble.astro') diff --git a/src/components/MessageBubble.astro b/src/components/MessageBubble.astro new file mode 100644 index 0000000..74f9927 --- /dev/null +++ b/src/components/MessageBubble.astro @@ -0,0 +1,17 @@ +--- +export interface Props { + speaker: string; + align?: 'left' | 'right'; + id?: string; + className?: string; +} +const { speaker, align = 'right', id, className = '' } = Astro.props; +--- +
+ + +
-- cgit v1.2.3-54-g00ecf