import type { HTMLAttributes } from "corvos/plugins/jsx.ts"; export type Props = HTMLAttributes<"figcaption"> & { children?: JSX.Element; }; export const FigureCaption = ({ children, class: cls, ...props }: Props) => ( {children} );