Files
web/components/TempDesignSystem/Link/link.ts
2024-04-12 16:25:52 +02:00

10 lines
244 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
}