@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
83 lines (82 loc) • 3.36 kB
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.HeaderInvestment = void 0;
var _react = _interopRequireDefault(require("react"));
var _react2 = require("@iconify/react");
var _material = require("@mui/material");
var _icons = require("../../../../helpers/icons");
var _organisms = require("../../../../organisms");
var _components = require("../../../../components");
var _jsxRuntime = require("react/jsx-runtime");
var _BoxContainer, _AvatarV, _Typography;
var HeaderInvestment = exports.HeaderInvestment = function HeaderInvestment() {
var theme = (0, _material.useTheme)();
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_organisms.HeaderFlex, {
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_material.Container, {
maxWidth: "xl",
sx: {
backgroundColor: theme.palette.background.paper,
display: 'flex',
alignItems: 'center',
justifyContent: 'space-between'
},
children: [_BoxContainer || (_BoxContainer = /*#__PURE__*/(0, _jsxRuntime.jsx)(_organisms.BoxContainer, {
children: /*#__PURE__*/(0, _jsxRuntime.jsx)("img", {
height: "60px",
src: "https://assets-global.website-files.com/5a8300770e20150001950f4f/5fc65274714fb356fe5f1fa8_Logo%20-%20full%20color%20dark%20accent.png",
alt: "logo"
})
})), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_material.Stack, {
direction: "row",
alignItems: "center",
columnGap: "10px",
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_components.IconButtonComponent, {
iconProps: {
sx: {
backgroundColor: theme.palette.background.paper
}
},
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_react2.Icon, {
icon: "ant-design:message-outlined",
color: theme.palette.text.primary
})
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.IconButtonComponent, {
iconProps: {
sx: {
backgroundColor: theme.palette.background.paper
}
},
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_react2.Icon, {
icon: "fluent:alert-16-regular",
color: theme.palette.text.primary
})
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_material.Stack, {
direction: "row",
alignItems: "center",
columnGap: "10px",
children: [_AvatarV || (_AvatarV = /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.AvatarV2, {
size: "medium"
})), _Typography || (_Typography = /*#__PURE__*/(0, _jsxRuntime.jsx)(_material.Typography, {
children: "Richard Hendricks"
})), /*#__PURE__*/(0, _jsxRuntime.jsx)(_components.IconButtonComponent, {
iconProps: {
sx: {
backgroundColor: theme.palette.background.paper,
'&:hover': {
backgroundColor: theme.palette.background.paper
}
}
},
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_react2.Icon, {
icon: _icons.ICONS_NAME.chevronDown,
color: theme.palette.text.secondary
})
})]
})]
})]
})
});
};