import type { ComponentProps } from "react"; export type PillRounding = "none" | "sm" | "md" | "lg" | "full"; export interface PillProps extends ComponentProps<"div"> { rounding?: PillRounding; }