mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
25 lines
592 B
JavaScript
25 lines
592 B
JavaScript
import React from "react";
|
|
import PropTypes from "prop-types";
|
|
import classnames from "classnames";
|
|
|
|
import FleetIcon from "components/icons/FleetIcon";
|
|
|
|
const baseClass = "persistent-flash";
|
|
|
|
const PersistentFlash = ({ message }) => {
|
|
const klass = classnames(baseClass, `${baseClass}--error`);
|
|
|
|
return (
|
|
<div className={klass}>
|
|
<div className={`${baseClass}__content`}>
|
|
<FleetIcon name="warning-filled" /> <span>{message}</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
PersistentFlash.propTypes = {
|
|
message: PropTypes.string.isRequired,
|
|
};
|
|
|
|
export default PersistentFlash;
|