Files
MattrixwvReactComponents/lib/types/PillTypes.ts
2026-02-26 23:10:08 -05:00

10 lines
201 B
TypeScript

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