@wordpress/components
Version:
UI components for WordPress.
23 lines (20 loc) • 521 B
JavaScript
import { createElement } from "@wordpress/element";
/**
* Internal dependencies
*/
/**
* `PanelHeader` renders the header for the `Panel`.
* This is used by the `Panel` component under the hood,
* so it does not typically need to be used.
*/
function PanelHeader(_ref) {
let {
label,
children
} = _ref;
return createElement("div", {
className: "components-panel__header"
}, label && createElement("h2", null, label), children);
}
export default PanelHeader;
//# sourceMappingURL=header.js.map