8 lines
230 B
TypeScript
8 lines
230 B
TypeScript
import type { VariantProps } from "class-variance-authority"
|
|
|
|
import type { chipVariants } from "./variants"
|
|
|
|
export interface ChipProps
|
|
extends React.HtmlHTMLAttributes<HTMLDivElement>,
|
|
VariantProps<typeof chipVariants> {}
|