import styled from "styled-components"; import css, { SystemStyleObject } from "@styled-system/css"; import { AllSystemProps, allSystemStyle } from "./system/unions"; export type H1Props = AllSystemProps & { mono?: boolean; }; const style = ({ mono = false }: H1Props) => css({ fontWeight: "bold", color: "black", fontFamily: mono ? "mono" : "sans", lineHeight: "short", fontSize: 4, } as SystemStyleObject); export const H1 = styled.span>( style, ...allSystemStyle ); H1.displayName = "H1";