Files
web/components/TempDesignSystem/Link/link.ts
2024-04-16 10:09:10 +02:00

11 lines
271 B
TypeScript

import { linkVariants } from "./variants"
import type { VariantProps } from "class-variance-authority"
export interface LinkProps
extends React.AnchorHTMLAttributes<HTMLAnchorElement>,
VariantProps<typeof linkVariants> {
href: string
partialMatch?: boolean
}