import { Alert, AlertDescription, AlertTitle, } from "@/registry/new-york/ui/alert" interface CalloutProps { icon?: string title?: string children?: React.ReactNode } export function Callout({ title, children, icon, ...props }: CalloutProps) { return ( {icon && {icon}} {title && {title}} {children} ) }