Alert

An alert displays a short, important message in a way that attracts the user's attention without interrupting the user's task.
Warning
Error
Info
Success
import React from "react";
import { Alert } from "shoto-ui";

function Alerts() {
  return (
        <div>
          <Alert severity="warning">Warning</Alert>
          <Alert severity="error">Error</Alert>
          <Alert severity="info">Info</Alert>
          <Alert severity="success">Success</Alert>
        </div>
  );
}