121
GitHub
Data displayGlass surface

Bubble

Frames chat messages and short comments.

FrameworksAstro · React · Elements

Registry commandlumen add Bubble

InteractionNative markup

01

See it in context

Preview

Can you summarize the release?
Lumen 0.1 ships primitives for Astro, React, and Web Components.
02

Copy a working example

Usage

astro
---
import { Bubble } from '@santi020k/lumen-astro'
---

<Bubble from="user">Can you summarize the release?</Bubble>
<Bubble>Lumen 0.1 ships primitives for Astro, React, and Web Components.</Bubble>
---
import { Bubble } from '@santi020k/lumen-astro'
---

<Bubble from="user">Can you summarize the release?</Bubble>
<Bubble>Lumen 0.1 ships primitives for Astro, React, and Web Components.</Bubble>
03

Choose your target

Add this component

Choose the package for your runtime. All adapters share the Lumen stylesheet. Use the matching registry command when you want a local wrapper for that framework.

bash@santi020k/lumen-astro
pnpm add @santi020k/lumen-astro
pnpm add @santi020k/lumen-astro
bashAstro wrapper
lumen add Bubble
lumen add Bubble

Glass

Add the glass prop to apply the shared blur, saturation, border, and highlight tokens. Glass reads best over vivid content, so place the surface above imagery or color.

Frosted bubbles stay readable over busy artwork: the backdrop is blurred, saturated, and edge-lit.
And the user variant keeps its accent tint on the same surface.
astro
---
import { Bubble } from '@santi020k/lumen-astro'
---

<div class="docs-glass-demo docs-glass-demo--stack">
  <Bubble glass>
    Frosted bubbles stay readable over busy artwork: the backdrop is blurred, saturated, and edge-lit.
  </Bubble>
  <Bubble from="user" glass>
    And the user variant keeps its accent tint on the same surface.
  </Bubble>
</div>
---
import { Bubble } from '@santi020k/lumen-astro'
---

<div class="docs-glass-demo docs-glass-demo--stack">
  <Bubble glass>
    Frosted bubbles stay readable over busy artwork: the backdrop is blurred, saturated, and edge-lit.
  </Bubble>
  <Bubble from="user" glass>
    And the user variant keeps its accent tint on the same surface.
  </Bubble>
</div>

API reference

Lumen-specific props and runtime attributes for the Astro primitive. React props follow the same names; Elements use equivalent kebab-case attributes where custom elements expose them.

AttributeValuesDefaultDescription
glassboolean | "subtle" | "strong"falseApplies the tokenized liquid-glass surface treatment with backdrop-filter fallbacks; "subtle" and "strong" adjust the fill intensity.
from"assistant" | "user""assistant"Aligns and styles the bubble for the message author.
class, classNamestring""Merges custom classes with the generated ui-* root classes.
...native attributesHTML attributes-Forwards standard attributes to the root element unless the component consumes them.