Feat(WEB-359): Update section link for mobile Approved-by: Chuma Mcphoy (We Ahead) Approved-by: Arvid Norlin
10 lines
295 B
TypeScript
10 lines
295 B
TypeScript
import { linkVariants } from "./variants"
|
|
|
|
import type { VariantProps } from "class-variance-authority"
|
|
|
|
export interface SectionLinkProps
|
|
extends React.PropsWithChildren<React.HTMLAttributes<HTMLSpanElement>>,
|
|
VariantProps<typeof linkVariants> {
|
|
link?: { href: string; text: string }
|
|
}
|