Components
Loading preview...
Alert in shadcn/ui format
npx shadcn@latest add https://21st.dev/r/serafimcloud/alertimport { Alert } from "@/components/ui/alert"
import { Info } from "lucide-react"
function AlertInfo() {
return (
<Alert
layout="row"
icon={<Info className="text-blue-500" size={16} strokeWidth={2} />}
>
<p className="text-sm">Just a quick note!</p>
</Alert>
)
}
export { AlertInfo }