/
githubmirror
/
ui
Обзор
Документация
Войти
/
githubmirror
/
ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
apps/v4/examples/aria/alert-basic.tsx
20 строк
475 B
shadcn
feat: aria (#11208)
17 июл 2026, 18:20
Не верифицирован
17 июл 2026, 18:20
2b89d67
Код
Авторство
О чём код?
import { CheckCircle2Icon } from "lucide-react" import { Alert, AlertDescription, AlertTitle, } from "@/styles/aria-nova/ui/alert" export default function AlertBasic() { return ( <Alert className="max-w-md"> <CheckCircle2Icon /> <AlertTitle>Account updated successfully</AlertTitle> <AlertDescription> Your profile information has been saved. Changes will be reflected immediately. </AlertDescription> </Alert> ) }