l-min-components 1.7.1521 → 1.7.1523
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/package.json +3 -2
- package/src/assets/svg/dashboard.jsx +6 -8
- package/src/components/messageAddon/assets/svg/check_circle.jsx +1 -1
- package/src/mc/messages.json +24915 -0
- package/src/mc/occurrences.json +21774 -0
- package/src/mc/report.json +12 -0
- package/src/mc/wordStore.json +480 -0
package/package.json
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { useTranslation } from 'l-min-components/src/components';
|
|
3
|
-
import wordStore from '../../mc/wordStore.json';
|
|
1
|
+
import React from "react";
|
|
4
2
|
export const DashboardIcon = ({ width, height, fill }) => (
|
|
5
3
|
<svg
|
|
6
|
-
width={width ||
|
|
7
|
-
height={height ||
|
|
4
|
+
width={width || "24"}
|
|
5
|
+
height={height || "25"}
|
|
8
6
|
viewBox="0 0 24 25"
|
|
9
7
|
fill="none"
|
|
10
8
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -72,7 +70,7 @@ export const DashboardIconActive = ({ width, height }) => {
|
|
|
72
70
|
stroke-miterlimit="10"
|
|
73
71
|
stroke-linecap="round"
|
|
74
72
|
stroke-linejoin="round"
|
|
75
|
-
fill={
|
|
73
|
+
fill={"#ffffff"}
|
|
76
74
|
/>
|
|
77
75
|
<path
|
|
78
76
|
d="M17 22.1797H19C21 22.1797 22 21.1797 22 19.1797V17.1797C22 15.1797 21 14.1797 19 14.1797H17C15 14.1797 14 15.1797 14 17.1797V19.1797C14 21.1797 15 22.1797 17 22.1797Z"
|
|
@@ -81,7 +79,7 @@ export const DashboardIconActive = ({ width, height }) => {
|
|
|
81
79
|
stroke-miterlimit="10"
|
|
82
80
|
stroke-linecap="round"
|
|
83
81
|
stroke-linejoin="round"
|
|
84
|
-
fill={
|
|
82
|
+
fill={"#ffffff"}
|
|
85
83
|
/>
|
|
86
84
|
<path
|
|
87
85
|
d="M5 22.1797H7C9 22.1797 10 21.1797 10 19.1797V17.1797C10 15.1797 9 14.1797 7 14.1797H5C3 14.1797 2 15.1797 2 17.1797V19.1797C2 21.1797 3 22.1797 5 22.1797Z"
|
|
@@ -90,7 +88,7 @@ export const DashboardIconActive = ({ width, height }) => {
|
|
|
90
88
|
stroke-miterlimit="10"
|
|
91
89
|
stroke-linecap="round"
|
|
92
90
|
stroke-linejoin="round"
|
|
93
|
-
fill={
|
|
91
|
+
fill={"#ffffff"}
|
|
94
92
|
/>
|
|
95
93
|
</svg>
|
|
96
94
|
);
|