10 lines
201 B
TypeScript
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;
|
|
}
|