import * as React from "react"; import { classList, ContainerProps } from "../util"; export interface LinkProps extends ContainerProps { href: string; target?: "_self" | "_blank" | "_parent" | "_top"; tabIndex?: number; title?: string; } export const Link = (props: LinkProps) => { const { id, className, ariaLabel, href, target, children, tabIndex, title } = props; const classes = classList( "common-link", className ); return ( {children} ); }