Skip to main content
161

Search Lumen

Find components, APIs, guides, and recipes.

GitHub
Web docs
Brand

Graphic

Frames product-owned artwork with portable glow, grid, or orbit treatments.

FrameworksAstro · React · Elements

Registry commandlumen add Graphic

InteractionNative markup

01

See it and copy it

Framework example

Choose Astro, React, or Elements to compare native usage against the shared visual output. Each example assumes the framework-level setup is already complete.

AstroSame visual contract, native framework API
Glow
Grid
Orbit

Framework usage

Switch targets to compare the adapter code. The preview stays visually stable because all three packages share the same tokens and ui-* class contract.
astro
---
import {
  Card,
  Graphic,
  Grid,
  Icon
} from '@santi020k/lumen-astro'

const variants = ['glow', 'grid', 'orbit'] as const
---

<Grid columns="auto" gap="lg" minItemWidth="11rem">
  {variants.map(variant => (
    <Card style="display:grid;gap:0.75rem;justify-items:center;padding:1rem" variant="muted">
      <Graphic size="sm" tone={variant === 'grid' ? 'accent' : 'brand'} variant={variant}>
        <Icon name={variant === 'orbit' ? 'orbit' : 'sparkles'} decorative size="xl" />
      </Graphic>
      <strong>{variant[0]?.toUpperCase()}{variant.slice(1)}</strong>
    </Card>
  ))}
</Grid>
Edit Graphic in browser
02

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 Graphic
lumen add Graphic

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
variant"glow" | "grid" | "orbit""orbit"Selects a portable decorative pattern around application-provided artwork.
tone"brand" | "accent" | "neutral""brand"Uses the matching semantic Lumen color without introducing a product palette.
size"sm" | "md" | "lg""md"Uses the shared 160, 240, or 320 unit composition size.
labelstring-Exposes the complete composition as one named image; without it the graphic is decorative.
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.

Web docsFull catalog