import { cn } from "@/lib/utils"; interface CalloutProps { icon?: string; children?: React.ReactNode; type?: "default" | "warning" | "danger"; } export function Callout({ children, icon, type = "default", ...props }: CalloutProps) { return (
{icon && {icon}}
{children}
); }