import { alpha } from "@theme-ui/color"; import React from "react"; import { Flex, Text, ThemeUIStyleObject } from "theme-ui"; interface ErrorBannerProps { message: string; sx?: ThemeUIStyleObject; } export const ErrorBanner: React.FC = ({ message, sx }) => ( {message} );