import PropTypes from "prop-types"; import styles from "./AlertPopover.module.css" function AlertPopover(props) { const icon = props.error ? (
) : (
) return (
{icon}

{props.text}

); } AlertPopover.propTypes = { visible: PropTypes.bool, text: PropTypes.string, error: PropTypes.bool }; export default AlertPopover;