import styled from "styled-components"; import css, { SystemStyleObject } from "@styled-system/css"; import { commonStyle, CommonStyleProps } from "./system/unions"; export type LabelProps = CommonStyleProps & { gray?: boolean; bold?: boolean; mono?: boolean; }; const style = ({ gray = false, bold = false, mono = false }: LabelProps) => css({ fontWeight: bold ? "bold" : "regular", color: gray ? "gray" : "black", fontFamily: mono ? "mono" : "sans", lineHeight: "min", fontSize: 1, pointerEvents: "none", userSelect: "none", verticalAlign: "middle", display: "flex", alignItems: "center", width: "100%", } as SystemStyleObject); export const Label = styled.label>( style, ...commonStyle ); Label.displayName = "Label";