import { cn } from "@/lib/utils" import { Alert, AlertDescription, AlertTitle, } from "@/registry/new-york-v4/ui/alert" export function Callout({ title, children, icon, className, variant = "default", ...props }: React.ComponentProps & { icon?: React.ReactNode variant?: "default" | "info" | "warning" }) { return ( {icon} {title && {title}} {children} ) }