Files
web/components/TempDesignSystem/Chip/chip.ts
2024-12-12 11:47:44 +01:00

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> {}