Files
web/components/TempDesignSystem/Link/link.ts
2024-05-24 10:48:45 +02:00

12 lines
292 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
prefetch?: boolean
}