1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 13:04:19 +00:00
pds-2021-g2-nest/nest_frontend/components/base/Alert.js

22 lines
651 B
JavaScript

import React from "react"
import Style from "./Alert.module.css"
import classNames from "classnames"
/**
* A colored alert box to draw the user's attention.
*
* @param color - The color of the alert.
* @param children - The contents of the alert.
* @param className - Additional class(es) to add to the div.
* @param props - Additional props to pass to the div.
* @returns {JSX.Element}
* @constructor
*/
export default function Alert({ color, children, className, ...props }) {
return (
<div className={classNames(Style.BoxAlert, Style[`BoxAlert${color}`], className)} {...props}>
{children}
</div>
)
}