BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/aurora/aurora-ai-reasoning

Aurora AI Reasoning

aurora-dinglebear-ai/aurora-ai-reasoning
UnverifiedBlock

Aurora-native reasoning parity surface from AI Elements.

Install it

npx shadcn@latest add https://raw.githubusercontent.com/dinglebear-ai/aurora/main/aurora-ai-reasoning.json

Source

registry/aurora/blocks/ai/elements/reasoning.tsxraw.githubusercontent.com/dinglebear-ai/aurora/main/aurora-ai-reasoning.json
1"use client"
2
3import * as React from "react"
4import { Brain, ChevronDown } from "lucide-react"
5import { Button } from "@/registry/aurora/ui/button"
6
7// ---------------------------------------------------------------------------
8// Reasoning — collapsible chain-of-thought summary.
9//
10// CD parity: orange rail + orange brain glyph, "Reasoned for Ns" / "Reasoning…"
11// label, a streaming bullet, and a blinking cursor on the live tail. Axon orange
12// is the AI/automation identity color. No violet.
13//
14// Architecture is kept standalone (not delegated to Thinking) so the Reasoning
15// surface can carry its own reasoning styling without leaking into the
16// shared Chain-of-thought / Plan variants.
17// ---------------------------------------------------------------------------
18
19// Styles: registry/aurora/styles/aurora-components.css (@layer aurora-components).
20const AXON = "var(--axon-orange)"
21
22export interface ReasoningProps {
23 /** Streaming summary tail — shows the "Reasoning…" orange label, bullet and cursor. */
24 isStreaming?: boolean
25 /** Seconds spent reasoning — renders the "Reasoned for Ns" label. */
26 duration?: number
27 /** Start expanded. */
28 defaultOpen?: boolean
29 /** Reasoning body. Prefer children; `content` is kept for back-compat. */
30 content?: string
31 children?: React.ReactNode
32}
33
34// Blinking cursor for the live streaming tail.
35function Cursor() {
36 return (
37 <span
38 aria-hidden="true"
39 style={{
40 display: "inline-block",
41 width: "2px",
42 height: "1em",
43 background: AXON,
44 marginLeft: "2px",
45 verticalAlign: "text-bottom",
46 borderRadius: "1px",
47 animation: "aurora-reasoning-blink 1s step-end infinite",
48 }}
49 />
50 )
51}
52
53const Reasoning = function Reasoning({ ref, isStreaming, duration, defaultOpen, content, children }: ReasoningProps & { ref?: React.Ref<HTMLDivElement> }) {
54 const [open, setOpen] = React.useState(defaultOpen ?? false)
55
56 const label =
57 duration !== undefined ? `Reasoned for ${duration}s` : isStreaming ? "Reasoning…" : "Reasoning"
58
59 const body = children ?? content
60
61 return (
62 <div ref={ref} style={{ display: "block", width: "100%", minWidth: 0 }}>
63 {/* Header — brain glyph + label + disclosure chevron */}
64 <Button
65 variant="plain"
66 size="unstyled"
67 onClick={() => setOpen((o) => !o)}
68 aria-expanded={open}
69 style={{
70 display: "inline-flex",
71// … truncated

What it pulls in

npm packages

  • lucide-react@^0.487.0

Other registry items

  • @aurora/aurora-tokens
  • @aurora/aurora-ai-elements
  • @aurora/aurora-thinking
  • @aurora/aurora-components

Files it writes

  • registry/aurora/blocks/ai/elements/reasoning.tsx

Facts

Registry
aurora
Type
registry:block
Access
Unverified
Files written
1
Licence
AGPL-3.0
In the index
at or before 2026-08-08
Last confirmed
today

Go to the source

aurora.dinglebear.ai dinglebear-ai/aurora on GitHub Raw registry item This item as JSON

More from aurora

All 176 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Aurora AI Actionaurora-ai-actionauroraBlocksUnverified1 dep
Aurora AI Actionsaurora-ai-actionsauroraBlocksUnverified1 dep
Aurora AI Agentaurora-ai-agentauroraBlocksUnverified1 dep
Aurora AI Image Gridaurora-ai-ai-image-gridauroraBlocksUnverified1 dep
Aurora AI Attachmentsaurora-ai-attachmentsauroraBlocksUnverified1 dep
Aurora AI Audio Playeraurora-ai-audio-playerauroraBlocksUnverified1 dep
Aurora AI Branchaurora-ai-branchauroraBlocksUnverified1 dep
Aurora AI Canvasaurora-ai-canvasauroraBlocksUnverified1 dep

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex