import type { HTMLAttributes } from "react"; import { cn } from "../../lib/cn"; export function Caption({ children, className, ...props }: HTMLAttributes) { return (

{children}

); }