import type * as G from "../../types/global"; import type { Attributes, ClassName } from "@reshaped/headless"; export type Props = { /** Component size */ size?: G.Responsive<"small" | "medium" | "large">; /** Component color, based on the color tokens */ color?: "primary" | "critical" | "positive" | "inherit"; /** aria-label attribute for the root element */ ariaLabel?: string; /** Additional classname for the root element */ className?: ClassName; /** Additional attributes for the root element */ attributes?: Attributes<"span">; };