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