UNPKG

1.34 kBJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.Masthead = void 0;
4const tslib_1 = require("tslib");
5const React = tslib_1.__importStar(require("react"));
6const masthead_1 = tslib_1.__importDefault(require("@patternfly/react-styles/css/components/Masthead/masthead"));
7const react_styles_1 = require("@patternfly/react-styles");
8const util_1 = require("../../helpers/util");
9const Page_1 = require("../Page/Page");
10const Masthead = (_a) => {
11 var { children, className, backgroundColor = 'dark', display = {
12 md: 'inline'
13 }, inset } = _a, props = tslib_1.__rest(_a, ["children", "className", "backgroundColor", "display", "inset"]);
14 const { width, getBreakpoint } = React.useContext(Page_1.PageContext);
15 return (React.createElement("header", Object.assign({ className: react_styles_1.css(masthead_1.default.masthead, util_1.formatBreakpointMods(display, masthead_1.default, 'display-', getBreakpoint(width)), util_1.formatBreakpointMods(inset, masthead_1.default, '', getBreakpoint(width)), backgroundColor === 'light' && masthead_1.default.modifiers.light, backgroundColor === 'light200' && masthead_1.default.modifiers.light_200, className) }, props), children));
16};
17exports.Masthead = Masthead;
18exports.Masthead.displayName = 'Masthead';
19//# sourceMappingURL=Masthead.js.map
\No newline at end of file