/**
 * TEAM: frontend_infra
 * @flow
 */

import * as React from "react";

import TextLink from "../../TextLink";

/**
 * @title Styles
 */
export default function TextLinkStyles(): React.Element<"div"> {
  return (
    <div style={{backgroundColor: "black"}}>
      <TextLink
        darkBackground={true}
        href="/careers/department/engineering"
        disableSpaHijack={true}
      >
        Inverted colors for dark backgrounds
      </TextLink>
    </div>
  );
}
