@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
20 lines • 1.24 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Masthead = void 0;
const tslib_1 = require("tslib");
const jsx_runtime_1 = require("react/jsx-runtime");
const react_1 = require("react");
const masthead_1 = tslib_1.__importDefault(require("@patternfly/react-styles/css/components/Masthead/masthead"));
const react_styles_1 = require("@patternfly/react-styles");
const util_1 = require("../../helpers/util");
const PageContext_1 = require("../Page/PageContext");
const Masthead = (_a) => {
var { children, className, display = {
md: 'inline'
}, inset } = _a, props = tslib_1.__rest(_a, ["children", "className", "display", "inset"]);
const { width, getBreakpoint } = (0, react_1.useContext)(PageContext_1.PageContext);
return ((0, jsx_runtime_1.jsx)("header", Object.assign({ className: (0, react_styles_1.css)(masthead_1.default.masthead, (0, util_1.formatBreakpointMods)(display, masthead_1.default, 'display-', getBreakpoint(width)), (0, util_1.formatBreakpointMods)(inset, masthead_1.default, '', getBreakpoint(width)), className) }, props, { children: children })));
};
exports.Masthead = Masthead;
exports.Masthead.displayName = 'Masthead';
//# sourceMappingURL=Masthead.js.map
;