1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-10-16 20:17:25 +00:00
pds-2021-g2-nest/nest_frontend/components/base/BoxHeader.js

21 lines
619 B
JavaScript

import React from "react"
import Style from "./BoxHeader.module.css"
import classNames from "classnames"
/**
* A box with only the header part and with no body.
*
* @param children - What should be displayed inside the header.
* @param className - Additional class(es) that should be added to the box.
* @param props - Additional props to pass to the box.
* @returns {JSX.Element}
* @constructor
*/
export default function BoxHeader({ children, className, ...props }) {
return (
<div className={classNames(Style.BoxHeaderOnly, className)} {...props}>
{children}
</div>
)
}