UNPKG

@maap-jupyterlab/dps-jupyter-extension

Version:

A JupyterLab extension for submitting and viewing jobs.

10 lines (9 loc) 334 B
import React from 'react'; import { Alert } from 'react-bootstrap'; import { BsInfoCircleFill } from 'react-icons/bs'; import '../../style/Alerts.css'; export const AlertBox = ({ text, variant }) => { return (React.createElement(Alert, { variant: variant }, React.createElement(BsInfoCircleFill, null), text)); };