import { css } from "@emotion/react"; import * as React from "react"; import * as Constants from "~/common/constants"; import * as SVG from "~/common/svg"; const STYLES_VIEW_SOURCE_LINK = css` font-size: 14px; font-family: ${Constants.font.semiBold}; display: inline-block; transition: 200ms ease all; cursor: pointer; color: ${Constants.system.darkGray}; :hover { color: ${Constants.system.brand}; } :visited { color: ${Constants.system.green}; } `; export default class ViewSourceLink extends React.Component { render() { return ( View Source ); } }