8 lines
223 B
TypeScript
8 lines
223 B
TypeScript
import type { VariantProps } from "class-variance-authority"
|
|
|
|
import type { itemVariants } from "./variants"
|
|
|
|
export interface ItemProps
|
|
extends React.HTMLAttributes<HTMLElement>,
|
|
VariantProps<typeof itemVariants> {}
|