import React from "react"; import { ExclamationCircleFill } from "@styled-icons/bootstrap"; export interface ErrorStatusProps { msg: JSX.Element; size?: number; style?: React.HTMLAttributes["style"]; } export const ErrorStatus: React.FunctionComponent = ({ msg, size = 36, style = {}, }) => { return (
{msg}
); };