import React, { ComponentPropsWithoutRef } from 'react' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import Flex from './Flex' import Text from './Text' import { faCircleExclamation } from '@fortawesome/free-solid-svg-icons' type Props = { message?: string } & Pick, 'css'> export default function ErrorWell({ message, css }: Props) { return ( {message || 'Oops, something went wrong. Please try again.'} ) }