@mtes-mct/monitor-ui 7.4.1 → 7.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/index.js +2 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/index.js
CHANGED
|
@@ -2867,6 +2867,7 @@ const MenuButton = styled(IconButton) `
|
|
|
2867
2867
|
border-bottom: solid 0.5px ${p => p.theme.color.slateGray};
|
|
2868
2868
|
color: ${p => (p.$isActive ? p.theme.color.white : p.theme.color.gainsboro)};
|
|
2869
2869
|
padding: 18px;
|
|
2870
|
+
height: 64px;
|
|
2870
2871
|
|
|
2871
2872
|
:hover,
|
|
2872
2873
|
:focus {
|
|
@@ -3091,7 +3092,7 @@ function Minus({ color, size, ...nativeProps }) {
|
|
|
3091
3092
|
}
|
|
3092
3093
|
|
|
3093
3094
|
function MissionAction({ color, size, ...nativeProps }) {
|
|
3094
|
-
return (jsx(IconBox, { "$color": color, "$size": size, children:
|
|
3095
|
+
return (jsx(IconBox, { "$color": color, "$size": size, children: jsxs("svg", { height: "20", viewBox: "0 0 20 20", width: "20", ...nativeProps, children: [jsx("path", { d: "M214,2V0h-2V2h-4V0h-2V2h-3V18h14V2Zm1,14H205V4h10Z", fill: "currentColor", transform: "translate(-200)" }), jsx("rect", { fill: "currentColor", height: "1.5", transform: "translate(7 6.5)", width: "6" }), jsx("rect", { fill: "currentColor", height: "1.5", transform: "translate(7 9.5)", width: "6" }), jsx("path", { d: "M200,0h20V20H200Z", fill: "none", transform: "translate(-200)" }), jsx("path", { d: "M200,0h20V20H200Z", fill: "none", transform: "translate(-200)" })] }) }));
|
|
3095
3096
|
}
|
|
3096
3097
|
|
|
3097
3098
|
function More({ color, size, ...nativeProps }) {
|