import * as React from "react"; import styled from "styled-components"; import breakpoint from "styled-components-breakpoint"; import { depths } from "@shared/styles"; import env from "~/env"; import OutlineIcon from "./Icons/OutlineIcon"; type Props = { href?: string; }; function Branding({ href = env.URL }: Props) { return (  {env.APP_NAME} ); } const Link = styled.a` justify-content: center; padding-bottom: 16px; font-weight: 600; font-size: 14px; text-decoration: none; border-top-right-radius: 2px; color: ${(props) => props.theme.text}; display: flex; align-items: center; svg { fill: ${(props) => props.theme.text}; } &:hover { background: ${(props) => props.theme.sidebarBackground}; } ${breakpoint("tablet")` z-index: ${depths.sidebar + 1}; position: fixed; bottom: 0; left: 0; padding: 16px; `}; `; export default Branding;