feat(SW-1296): added Subpage for hotel pages and its routing * feat(SW-1296): added Subpage for hotel pages and its routing Approved-by: Fredrik Thorsson
17 lines
456 B
TypeScript
17 lines
456 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
|
|
trackingId?: string
|
|
trackingParams?: Record<string, string>
|
|
keepSearchParams?: boolean
|
|
appendToCurrentPath?: boolean
|
|
}
|