import type { HTMLTag, Polymorphic } from "corvos/plugins/jsx.ts"; export type Props = Polymorphic<{ "as": Tag; "pad-inline"?: boolean; "pad-block"?: boolean; "size"?: "sm"; "fixed"?: boolean | "150" | "200"; }>; export const Container = ({ as: Tag = "div" as T, class: cls, "pad-inline": padInline, "pad-block": padBlock, fixed, size, ...props }: Props) => ( );