feat(SW-3230): Move Link to design-system * Move Link to design-system * Remove comments Approved-by: Linus Flood
14 lines
360 B
TypeScript
14 lines
360 B
TypeScript
import type { VariantProps } from 'class-variance-authority'
|
|
|
|
import type { linkVariants } from './variants'
|
|
|
|
export interface LinkProps
|
|
extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'color'>,
|
|
VariantProps<typeof linkVariants> {
|
|
href: string
|
|
scroll?: boolean
|
|
partialMatch?: boolean
|
|
prefetch?: boolean
|
|
keepSearchParams?: boolean
|
|
}
|