import type { ViewProps } from "../View"; import type * as G from "../../types/global"; import type { Attributes, ClassName } from "@reshaped/headless"; import type React from "react"; export type Props = Pick & { /** Component inline padding */ padding?: ViewProps["padding"]; /** Component width, literal css value or unit token multiplier */ width?: G.Responsive; /** Component height, literal css value or unit token multiplier */ height?: G.Responsive; /** Component max height, literal css value or unit token multiplier */ maxHeight?: G.Responsive; /** Node for inserting children */ children?: React.ReactNode; /** Additional classname for the root element */ className?: ClassName; /** Additional attributes for the root element */ attributes?: Attributes<"div">; };