import type { HTMLTag, Polymorphic } from "corvos/plugins/jsx.ts";
export type Props = Polymorphic<{
"as"?: Tag;
"list"?: boolean;
"quiet"?: boolean;
"thumbnail"?: boolean;
"border"?: boolean;
"no-shadow"?: boolean;
"horizontal"?: boolean;
"interactive"?: boolean;
"highlight"?: boolean;
"children"?: JSX.Element;
}>;
export const Card = ({
as: Tag = "article" as T,
list,
quiet,
thumbnail,
border,
"no-shadow": noShadow,
horizontal,
interactive,
highlight,
class: cls,
...props
}: Props) => (
);