NexoreUIv1.6
InstallationComponents41IconsTemplatesNEWNexore MakeAI
Create ProjectSTUDIOGitHub
NexoreUI
44 comps
Create Project
Studio
Installation
Components Overview
40+
Icons
300+
Categories6 groups
Button
Input
Switch
Slider
Rating
File Upload
Card
Accordion
Tabs
Table
Stepper
Scroll Area
Navigation
Dock
Data Display
Aurora Border Card
AI
Aurora Search Pill
AI
AI Prompt Input
AI
Command
Interactive Code Block
AI
Theme: cyan
Studio
DocsAurora Search Pill

Aurora Search Pill

Ultra-premium AI search pill with rotating conic glow, 1.5px border track, and responsive search query expansion.

On This Page
Quick Actions
Project Studio
New
Nexore Make (AI)Source on GitHub
New Component@nexoreui/aurora-search-pill

Aurora Search Pill

Ultra-premium conversational AI search pill featuring a rotating conic gradient halo, 1.5px illuminated border track, and fluid transition between 3 pulsing dots and an active search query with overlapping source badges.

Interactive Playground
Live CanvasInteractive
Search...
Controls(7)
searchLabel
text

Search heading text rendered in active searching state.

theme
select

Surface theme: light (pure white), dark (obsidian), or auto.

size
select

Size scale of the pill, typography, and badges.

glowIntensity
select

Luminosity and diffusion of the surrounding aurora glow.

speed
select

Conic gradient rotation speed (slow: 5s, normal: 3.2s, fast: 1.8s).

spinMode
select

Rotation mode: 'always' (continuous aurora wave), 'searching' (only while active), 'hover', or 'never'.

autoCycle
boolean
Toggle state:

Continuously toggle between listening and searching states.

Generated JSX
Source
import { AuroraSearchPill } from "nexoreui"

<AuroraSearchPill />
Source Code & Export
AuroraSearchPillDemo.tsx
1
Props Reference

API Reference (Props)

PropTypeDefaultDescription
isSearchingbooleanundefinedControlled searching active state.
defaultSearchingbooleanfalseInitial searching state when uncontrolled.
onToggle(isSearching: boolean) => void—Callback invoked whenever the pill is clicked or toggled.
searchLabelstring"Search..."Text label displayed next to source badges in the active state.
sourcesAuroraSearchSource[][Web, Neural Index, GitHub]Array of source icon badges rendered when searching is active (supports avatarUrl, icons, initials, presets).
sourceAvatarsstring[]undefinedShortcut array of avatar image URLs rendered as source icons.
spinMode"searching" | "always" | "hover" | "never""searching"When the beam should rotate: only while searching (default), continuously, on hover, or never.
theme"light" | "dark" | "auto""auto"Color theme for the pill center surface.
size"sm" | "md" | "lg""md"Height, typography, and badge sizing scale.
glowIntensity"subtle" | "medium" | "strong" | "none""medium"Volumetric ambient blur glow opacity around the perimeter.
speed"slow" | "normal" | "fast""normal"Rotation velocity of the aurora light beam.
autoCyclebooleanfalseEnables automatic demo cycling between idle dots and searching.
cycleIntervalnumber2400Interval in milliseconds between autoCycle state transitions.
classNamestring—Additional CSS classes applied to the outer wrapper.
Usage Examples (1 of 5)
1 / 5

1. Interactive Click-to-Search Pill

Default state renders 3 pulsing dots. Clicking expands into active query with source icons.

Search...
Click to expand / collapse
1InteractiveClicktoSearchPill.tsx
1