import clsx from 'clsx' import { Anchor } from 'components/Anchor' export interface LinkTabProps { title: string description: string href: string isActive?: boolean } export const LinkTab = (props: LinkTabProps) => { const { title, description, href, isActive } = props return (

{title}

{description}
) }