← All widgetsAnimatedAnimated & Data Viz

Pulse

Pulsing glow wrapper.

Wraps a child component in a pulsing glow β€” useful to draw attention to a status or alert.

type Β· pulse
An animated visual primitive.

How to use it

Just ask for it in chat β€” the agent emits this widget and the shell renders it:

Try saying
β€œmake a pulsing red 'LIVE' badge”

Example

The agent returns this A2UI component (inside the components array of a /chat response):

pulse.json
{
  "type": "pulse",
  "glowColor": "0xFFFF5722",
  "intensity": 0.8,
  "child": {
    "type": "text",
    "content": "● LIVE",
    "color": "0xFFFF5722"
  }
}

Properties

PropTypeDescription
glowColorcolorGlow color
intensitynumber0–1 glow strength
childcomponentThe wrapped component

Browse the full Widget Index, the Widget Catalog, or learn the A2UI system behind it.