Files
web/apps/scandic-web/components/TempDesignSystem/Popover/Arrow/arrow.ts
2025-04-01 08:38:08 +02:00

8 lines
244 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> {}