Components
Loading preview...
HeroUI v3 Alert — status-aware feedback messages built with the real @heroui/react package. Includes default, accent, success, warning and danger statuses, action buttons, close buttons, custom indicators, compact alerts, stacked notifications, maintenance notices and custom BEM/Tailwind styling. Works in light and dark themes.
npx shadcn@latest add https://21st.dev/r/hero_ui/heroui-alert"use client"
import { Spinner } from "@heroui/react"
import { Alert } from "@/components/ui/heroui-alert"
export default function CustomIndicatorDemo() {
return (
<div className="w-full max-w-xl">
<Alert status="accent">
<Alert.Indicator>
<Spinner size="sm" />
</Alert.Indicator>
<Alert.Content>
<Alert.Title>Processing your request</Alert.Title>
<Alert.Description>
Please wait while we sync your data. This may take a few moments.
</Alert.Description>
</Alert.Content>
</Alert>
</div>
)
}