/** @jsx jsx */ import { jsx, css } from "@emotion/react"; import colors from "../colors"; interface ErrorMessageProps { show: boolean, message: string } const styles = css` color: ${colors.error}; font-size: 18px; line-height: 15px; margin: 15px 0 0; `; export default function ErrorMessage(props: ErrorMessageProps): JSX.Element|null { if (!props.show) { return null; } return (
{props.message}
); }