@flodesk/grain 5.16.3 → 5.16.4
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-check.js +4 -11
- package/package.json +1 -1
package/es/icons/icon-check.js
CHANGED
|
@@ -7,22 +7,15 @@ import { jsx as ___EmotionJSX } from "@emotion/react";
|
|
|
7
7
|
|
|
8
8
|
var IconCheck = function IconCheck(props) {
|
|
9
9
|
return ___EmotionJSX("svg", _extends({
|
|
10
|
-
viewBox: "0 0
|
|
10
|
+
viewBox: "0 0 22 24",
|
|
11
11
|
fill: "none",
|
|
12
12
|
xmlns: "http://www.w3.org/2000/svg"
|
|
13
|
-
}, props), ___EmotionJSX("
|
|
14
|
-
clipPath: "url(#Check_svg__a)"
|
|
15
|
-
}, ___EmotionJSX("path", {
|
|
13
|
+
}, props), ___EmotionJSX("path", {
|
|
16
14
|
fillRule: "evenodd",
|
|
17
15
|
clipRule: "evenodd",
|
|
18
|
-
d: "
|
|
16
|
+
d: "M21.707 6.207L8.5 19.414.293 11.207l1.414-1.414L8.5 16.586 20.293 4.793l1.414 1.414z",
|
|
19
17
|
fill: "currentColor"
|
|
20
|
-
}))
|
|
21
|
-
id: "Check_svg__a"
|
|
22
|
-
}, ___EmotionJSX("path", {
|
|
23
|
-
fill: "#fff",
|
|
24
|
-
d: "M0 0h24v24H0z"
|
|
25
|
-
}))));
|
|
18
|
+
}));
|
|
26
19
|
};
|
|
27
20
|
|
|
28
21
|
export default IconCheck;
|