2021-04-23 00:18:06 +00:00
|
|
|
import React from "react"
|
2021-04-23 00:26:16 +00:00
|
|
|
import Style from "./BoxFull.module.css"
|
2021-04-20 23:03:59 +00:00
|
|
|
import classNames from "classnames"
|
|
|
|
|
|
|
|
|
2021-04-23 00:18:06 +00:00
|
|
|
/**
|
|
|
|
* A box with both a header and a body.
|
|
|
|
*
|
|
|
|
* @param header - The contents of the box header.
|
|
|
|
* @param children - The contents of the box body.
|
|
|
|
* @param className - Additional class(es) that should be added to the outer `<div>` of the box.
|
|
|
|
* @param props - Additional props to pass to the box.
|
|
|
|
* @returns {JSX.Element}
|
|
|
|
* @constructor
|
|
|
|
*/
|
2021-04-23 00:26:16 +00:00
|
|
|
export default function BoxFull({ header, children, className, ...props }) {
|
2021-04-20 23:03:59 +00:00
|
|
|
return (
|
|
|
|
<div className={classNames(Style.BoxWithHeader, className)} {...props}>
|
2021-04-23 00:18:06 +00:00
|
|
|
<div className={Style.BoxHeader}>
|
|
|
|
{header}
|
2021-04-20 23:03:59 +00:00
|
|
|
</div>
|
2021-04-23 00:18:06 +00:00
|
|
|
<div className={Style.BoxBody}>
|
|
|
|
{children}
|
2021-04-20 23:03:59 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|