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 { Button } from "@heroui/react"
import { Alert } from "@/components/ui/heroui-alert"
export default function WithActionDemo() {
return (
<div className="w-full max-w-xl">
<Alert status="accent">
<Alert.Indicator />
<Alert.Content>
<Alert.Title>Update available</Alert.Title>
<Alert.Description>
A new version of the application is available. Refresh to get the latest features and
bug fixes.
</Alert.Description>
<Button className="mt-2 sm:hidden" size="sm" variant="primary">
Refresh
</Button>
</Alert.Content>
<Button className="hidden sm:block" size="sm" variant="primary">
Refresh
</Button>
</Alert>
</div>
)
}