/
githubmirror
/
ui
Обзор
Документация
Войти
/
githubmirror
/
ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
apps/v4/examples/base/alert-basic.tsx
20 строк
475 B
shadcn
fix: refactor styles (#10190)
26 мар 2026, 13:36
Не верифицирован
26 мар 2026, 13:36
7d718dd
Код
Авторство
О чём код?
import { CheckCircle2Icon } from "lucide-react" import { Alert, AlertDescription, AlertTitle, } from "@/styles/base-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> ) }