import React, { FunctionComponent } from "react"; import warningIcon from "../../../static/images/Alert/warning.png"; export interface AlertProps { message: string; type: "warning"; } export const Alert: FunctionComponent = ({ message, type }) => { let bgColor; let icon; switch (type) { case "warning": bgColor = "bg-yellow-50"; icon = warningIcon; } return (

{message}

); };