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