import React from "react"; import classNames from "classnames"; import { Link, LinkProps } from "../Link"; export const AppbarLogInButton = (props: LinkProps) => { const { onClick, href, ...rest } = props; return ( Log in ); };