import type { HTMLAttributes } from "corvos/plugins/jsx.ts"; export type Props = HTMLAttributes<"ul"> & { "layout"?: | "merge" | "grid" | "grid-sm" | "grid-xs" | "flex" | "flex-sm" | "flex-xs" | "masonry" | "masonry-h" | "masonry-h-sm"; "quiet"?: boolean; "border"?: boolean; "interactive"?: boolean; "no-shadow"?: boolean; "no-flush"?: boolean; "keyboard-nav"?: boolean; }; export const CardList = ({ layout, quiet, border, interactive, "no-shadow": noShadow, "no-flush": noFlush, "keyboard-nav": keyboardNav, class: cls, ...props }: Props) => (
);