examples/alert-info.tsx
1import { Alert } from "@/components/wensity/alert";23export function InfoAlert() {4 return (5 <Alert6 variant="info"7 title="Workspace indexing started"8 description="Search results will update as components are processed."9 />10 );11}