import type { HTMLTag, Polymorphic } from "corvos/plugins/jsx.ts"; export type Props = Polymorphic<{ as?: Tag; }>; export const CardFooter = ({ as: Tag = "div" as T, class: cls, ...props }: Props) => ;