9 lines
248 B
TypeScript
9 lines
248 B
TypeScript
import type { VariantProps } from "class-variance-authority"
|
|
|
|
import type { arrowVariants } from "./variants"
|
|
|
|
export interface ArrowProps
|
|
extends
|
|
Omit<React.HTMLAttributes<HTMLDivElement>, "color">,
|
|
VariantProps<typeof arrowVariants> {}
|