examples/toast-info.tsx
1import { Toast } from "@/components/wensity/toast";23export function InfoToast() {4 return (5 <Toast6 variant="info"7 title="Source sync started"8 description="Generated manifests will update in a few seconds."9 />10 );11}