mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-26 15:04:18 +00:00
39 lines
1 KiB
JavaScript
39 lines
1 KiB
JavaScript
import React, {isValidElement} from "react"
|
|
import Style from "./BoxWithHeader.module.css"
|
|
import classNames from "classnames"
|
|
import isString from "is-string"
|
|
|
|
|
|
export default function BoxWithHeader({ header, body, children, className, ...props }) {
|
|
|
|
if(isValidElement(header) || isString(header)) {
|
|
header = {
|
|
children: header
|
|
}
|
|
}
|
|
|
|
if(isValidElement(body) || isString(body)) {
|
|
body = {
|
|
children: body
|
|
}
|
|
}
|
|
|
|
if(children) {
|
|
if(body.children) {
|
|
throw new Error("If directly passing `children` to BoxWithHeader, body.children should not be set.")
|
|
}
|
|
|
|
body["children"] = children
|
|
}
|
|
|
|
return (
|
|
<div className={classNames(Style.BoxWithHeader, className)} {...props}>
|
|
<div className={classNames(Style.BoxHeader, header.className)}>
|
|
{header.children}
|
|
</div>
|
|
<div className={classNames(Style.BoxBody, body.className)}>
|
|
{body.children}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|