Files
web/components/TempDesignSystem/Link/link.ts
2024-04-11 13:53:26 +02:00

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