@flodesk/grain 5.23.0 → 5.23.1
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-share.js +11 -4
- package/package.json +1 -1
package/es/icons/icon-share.js
CHANGED
|
@@ -7,15 +7,22 @@ import { jsx as ___EmotionJSX } from "@emotion/react";
|
|
|
7
7
|
|
|
8
8
|
var IconShare = function IconShare(props) {
|
|
9
9
|
return ___EmotionJSX("svg", _extends({
|
|
10
|
-
viewBox: "0 0
|
|
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(#prefix__clip0_180_670)"
|
|
15
|
+
}, ___EmotionJSX("path", {
|
|
14
16
|
fillRule: "evenodd",
|
|
15
17
|
clipRule: "evenodd",
|
|
16
|
-
d: "
|
|
18
|
+
d: "M2 2v20h20v-6h2v6a2 2 0 01-2 2H2a2 2 0 01-2-2V2C0 .897.892 0 1.999 0H8v2H2zm10.03 0H12V0H22.999L23 1V0h1v12h-2V3.414L9.707 15.707l-1.414-1.414L20.586 2H12.029z",
|
|
17
19
|
fill: "currentColor"
|
|
18
|
-
}))
|
|
20
|
+
})), ___EmotionJSX("defs", null, ___EmotionJSX("clipPath", {
|
|
21
|
+
id: "prefix__clip0_180_670"
|
|
22
|
+
}, ___EmotionJSX("path", {
|
|
23
|
+
fill: "#fff",
|
|
24
|
+
d: "M0 0h24v24H0z"
|
|
25
|
+
}))));
|
|
19
26
|
};
|
|
20
27
|
|
|
21
28
|
export default IconShare;
|