@flodesk/grain 5.16.1 → 5.16.3
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/es/icons/icon-align-center.js +11 -4
- package/es/icons/icon-align-left.js +12 -5
- package/es/icons/icon-align-right.js +12 -5
- package/es/icons/icon-arrow-down.js +3 -3
- package/es/icons/icon-arrow-left.js +3 -3
- package/es/icons/icon-arrow-right.js +3 -3
- package/es/icons/icon-arrow-up.js +3 -3
- package/es/icons/icon-browser.js +5 -34
- package/es/icons/icon-chart.js +11 -4
- package/es/icons/icon-check.js +13 -10
- package/es/icons/icon-chevron-down.js +5 -4
- package/es/icons/icon-chevron-horizontal.js +5 -4
- package/es/icons/icon-chevron-left.js +5 -4
- package/es/icons/icon-chevron-right.js +7 -18
- package/es/icons/icon-chevron-up.js +6 -10
- package/es/icons/icon-chevron-vertical.js +6 -19
- package/es/icons/icon-clip.js +14 -6
- package/es/icons/icon-clock.js +6 -11
- package/es/icons/icon-crop.js +2 -2
- package/es/icons/icon-cross.js +2 -2
- package/es/icons/icon-download.js +5 -5
- package/es/icons/icon-duplicate.js +6 -15
- package/es/icons/icon-ellipsis.js +5 -15
- package/es/icons/icon-file.js +11 -4
- package/es/icons/icon-folder-add.js +2 -2
- package/es/icons/icon-folder.js +2 -2
- package/es/icons/icon-gear.js +12 -10
- package/es/icons/icon-globe.js +11 -4
- package/es/icons/icon-heart.js +3 -2
- package/es/icons/icon-image.js +2 -2
- package/es/icons/icon-link.js +5 -9
- package/es/icons/icon-mail.js +2 -2
- package/es/icons/icon-minus.js +3 -3
- package/es/icons/icon-monitor.js +2 -2
- package/es/icons/icon-pencil.js +11 -4
- package/es/icons/icon-phone.js +2 -2
- package/es/icons/icon-plus.js +3 -3
- package/es/icons/icon-redo.js +2 -2
- package/es/icons/icon-search.js +6 -11
- package/es/icons/icon-send.js +5 -4
- package/es/icons/icon-share.js +11 -4
- package/es/icons/icon-smile.js +13 -23
- package/es/icons/icon-switch.js +2 -2
- package/es/icons/icon-tablet.js +2 -2
- package/es/icons/icon-text-align-center.js +5 -3
- package/es/icons/icon-text-align-left.js +5 -3
- package/es/icons/icon-text-align-right.js +5 -3
- package/es/icons/icon-trash.js +11 -4
- package/es/icons/icon-type.js +14 -5
- package/es/icons/icon-undo.js +11 -4
- package/es/icons/icon-upload.js +5 -5
- package/es/styles/variables.css +6 -6
- package/package.json +1 -1
package/es/icons/icon-undo.js
CHANGED
|
@@ -7,15 +7,22 @@ import { jsx as ___EmotionJSX } from "@emotion/react";
|
|
|
7
7
|
|
|
8
8
|
var IconUndo = function IconUndo(props) {
|
|
9
9
|
return ___EmotionJSX("svg", _extends({
|
|
10
|
-
viewBox: "0 0 24
|
|
10
|
+
viewBox: "0 0 24 24",
|
|
11
11
|
fill: "none",
|
|
12
12
|
xmlns: "http://www.w3.org/2000/svg"
|
|
13
|
-
}, props), ___EmotionJSX("
|
|
13
|
+
}, props), ___EmotionJSX("g", {
|
|
14
|
+
clipPath: "url(#Undo_svg__a)"
|
|
15
|
+
}, ___EmotionJSX("path", {
|
|
14
16
|
fillRule: "evenodd",
|
|
15
17
|
clipRule: "evenodd",
|
|
16
|
-
d: "M1.414
|
|
18
|
+
d: "M1.414 7.586 9 0l1.414 1.414L3.828 8H16a8 8 0 1 1 0 16h-4v-2h4a6 6 0 0 0 0-12H3.828l6.586 6.586L9 18l-7.586-7.586L0 9l1.414-1.414Z",
|
|
17
19
|
fill: "currentColor"
|
|
18
|
-
}))
|
|
20
|
+
})), ___EmotionJSX("defs", null, ___EmotionJSX("clipPath", {
|
|
21
|
+
id: "Undo_svg__a"
|
|
22
|
+
}, ___EmotionJSX("path", {
|
|
23
|
+
fill: "#fff",
|
|
24
|
+
d: "M0 0h24v24H0z"
|
|
25
|
+
}))));
|
|
19
26
|
};
|
|
20
27
|
|
|
21
28
|
export default IconUndo;
|
package/es/icons/icon-upload.js
CHANGED
|
@@ -7,21 +7,21 @@ import { jsx as ___EmotionJSX } from "@emotion/react";
|
|
|
7
7
|
|
|
8
8
|
var IconUpload = function IconUpload(props) {
|
|
9
9
|
return ___EmotionJSX("svg", _extends({
|
|
10
|
-
viewBox: "0 0 24
|
|
10
|
+
viewBox: "0 0 24 24",
|
|
11
11
|
fill: "none",
|
|
12
12
|
xmlns: "http://www.w3.org/2000/svg"
|
|
13
13
|
}, props), ___EmotionJSX("g", {
|
|
14
|
-
clipPath: "url(#
|
|
14
|
+
clipPath: "url(#Upload_svg__a)"
|
|
15
15
|
}, ___EmotionJSX("path", {
|
|
16
16
|
fillRule: "evenodd",
|
|
17
17
|
clipRule: "evenodd",
|
|
18
|
-
d: "
|
|
18
|
+
d: "m22 10-8.586-8.586L12 0l-1.414 1.414L2 10l1.414 1.414L11 3.828V20h2V3.828l7.586 7.586L22 10ZM0 16v6a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2v-6h-2v6H2v-6H0Z",
|
|
19
19
|
fill: "currentColor"
|
|
20
20
|
})), ___EmotionJSX("defs", null, ___EmotionJSX("clipPath", {
|
|
21
|
-
id: "
|
|
21
|
+
id: "Upload_svg__a"
|
|
22
22
|
}, ___EmotionJSX("path", {
|
|
23
23
|
fill: "#fff",
|
|
24
|
-
d: "M0
|
|
24
|
+
d: "M0 0h24v24H0z"
|
|
25
25
|
}))));
|
|
26
26
|
};
|
|
27
27
|
|
package/es/styles/variables.css
CHANGED
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
--grn-text-xxl: 30px;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
/*
|
|
13
|
+
/* text size ✕ ~1.285 */
|
|
14
14
|
:root {
|
|
15
|
-
--grn-icon-s:
|
|
16
|
-
--grn-icon-m:
|
|
17
|
-
--grn-icon-l:
|
|
18
|
-
--grn-icon-xl:
|
|
19
|
-
--grn-icon-xxl:
|
|
15
|
+
--grn-icon-s: 14px;
|
|
16
|
+
--grn-icon-m: 18px;
|
|
17
|
+
--grn-icon-l: 24px;
|
|
18
|
+
--grn-icon-xl: 32px;
|
|
19
|
+
--grn-icon-xxl: 40px;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
:root {
|