@teamturing/icons 1.35.2 → 1.37.0

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/dist/Book.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgBook: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgBook;
package/dist/Pill.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgPill: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgPill;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgPillColor: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgPillColor;
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgScroll: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgScroll;
package/dist/index.d.ts CHANGED
@@ -16,6 +16,7 @@ export { default as ArrowUpIcon } from './ArrowUp';
16
16
  export { default as ArrowUpDownIcon } from './ArrowUpDown';
17
17
  export { default as ArrowUpLimitIcon } from './ArrowUpLimit';
18
18
  export { default as BarchartIcon } from './Barchart';
19
+ export { default as BookIcon } from './Book';
19
20
  export { default as BookmarkIcon } from './Bookmark';
20
21
  export { default as BoxIcon } from './Box';
21
22
  export { default as BusColorIcon } from './BusColor';
@@ -144,6 +145,8 @@ export { default as PauseIcon } from './Pause';
144
145
  export { default as PenIcon } from './Pen';
145
146
  export { default as PercentInCircleIcon } from './PercentInCircle';
146
147
  export { default as PictureIcon } from './Picture';
148
+ export { default as PillIcon } from './Pill';
149
+ export { default as PillColorIcon } from './PillColor';
147
150
  export { default as PinIcon } from './Pin';
148
151
  export { default as PinColorRedIcon } from './PinColorRed';
149
152
  export { default as PlayIcon } from './Play';
@@ -166,6 +169,7 @@ export { default as RefreshIcon } from './Refresh';
166
169
  export { default as RepeatIcon } from './Repeat';
167
170
  export { default as SchoolIcon } from './School';
168
171
  export { default as SchoolColorIcon } from './SchoolColor';
172
+ export { default as ScrollIcon } from './Scroll';
169
173
  export { default as SearchIcon } from './Search';
170
174
  export { default as SetIcon } from './Set';
171
175
  export { default as SettingIcon } from './Setting';
package/dist/index.js CHANGED
@@ -303,6 +303,19 @@ const SvgBarchart = props => /*#__PURE__*/React__namespace.createElement("svg",
303
303
  d: "M14 2h5c.6 0 1 .4 1 1v18c0 .6-.4 1-1 1h-5c-.6 0-1-.4-1-1V3c0-.6.4-1 1-1ZM5 12h5c.6 0 1 .4 1 1v8c0 .6-.4 1-1 1H5c-.6 0-1-.4-1-1v-8c0-.6.4-1 1-1Z"
304
304
  }));
305
305
 
306
+ const SvgBook = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
307
+ xmlns: "http://www.w3.org/2000/svg",
308
+ width: "1em",
309
+ height: "1em",
310
+ fill: "none",
311
+ viewBox: "0 0 24 24"
312
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
313
+ fill: "currentColor",
314
+ fillRule: "evenodd",
315
+ d: "M6.049 2A2.449 2.449 0 0 0 3.6 4.449v15.102a2.449 2.449 0 0 0 2.62 2.443c.045.004.09.006.135.006h13.163c.451 0 .817-.366.817-.816v-.409a.816.816 0 0 0-.817-.816H6.865a.816.816 0 0 1 0-1.633H19.518c.451 0 .817-.365.817-.816V2.816A.816.816 0 0 0 19.518 2H6.048Zm2.857 2.857a.816.816 0 0 0-.816.816v1.633c0 .451.365.816.816.816h7.347c.45 0 .816-.365.816-.816V5.673a.816.816 0 0 0-.816-.816H8.906Z",
316
+ clipRule: "evenodd"
317
+ }));
318
+
306
319
  const SvgBookmark = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
307
320
  xmlns: "http://www.w3.org/2000/svg",
308
321
  width: "1em",
@@ -2340,6 +2353,41 @@ const SvgPicture = props => /*#__PURE__*/React__namespace.createElement("svg", _
2340
2353
  clipRule: "evenodd"
2341
2354
  }));
2342
2355
 
2356
+ const SvgPill = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
2357
+ xmlns: "http://www.w3.org/2000/svg",
2358
+ width: "1em",
2359
+ height: "1em",
2360
+ fill: "none",
2361
+ viewBox: "0 0 24 24"
2362
+ }, props), /*#__PURE__*/React__namespace.createElement("g", {
2363
+ fill: "currentColor",
2364
+ clipPath: "url(#pill_svg__a)"
2365
+ }, /*#__PURE__*/React__namespace.createElement("path", {
2366
+ d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z",
2367
+ opacity: 0.4
2368
+ }), /*#__PURE__*/React__namespace.createElement("path", {
2369
+ d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
2370
+ })), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
2371
+ id: "pill_svg__a"
2372
+ }, /*#__PURE__*/React__namespace.createElement("path", {
2373
+ fill: "#fff",
2374
+ d: "M0 0h24v24H0z"
2375
+ }))));
2376
+
2377
+ const SvgPillColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
2378
+ xmlns: "http://www.w3.org/2000/svg",
2379
+ width: "1em",
2380
+ height: "1em",
2381
+ fill: "none",
2382
+ viewBox: "0 0 24 24"
2383
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
2384
+ fill: "#D9CDF9",
2385
+ d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z"
2386
+ }), /*#__PURE__*/React__namespace.createElement("path", {
2387
+ fill: "#9C7EEF",
2388
+ d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
2389
+ }));
2390
+
2343
2391
  const SvgPin = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
2344
2392
  xmlns: "http://www.w3.org/2000/svg",
2345
2393
  width: "1em",
@@ -2821,6 +2869,24 @@ const SvgSchoolColor = props => /*#__PURE__*/React__namespace.createElement("svg
2821
2869
  d: "M0 0h32v32H0z"
2822
2870
  }))));
2823
2871
 
2872
+ const SvgScroll = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
2873
+ xmlns: "http://www.w3.org/2000/svg",
2874
+ width: "1em",
2875
+ height: "1em",
2876
+ fill: "none",
2877
+ viewBox: "0 0 24 24"
2878
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
2879
+ fill: "currentColor",
2880
+ fillRule: "evenodd",
2881
+ d: "M11.55 9.636a.695.695 0 0 0-.192.968l3.048 4.515c.883 1.31-.353 3.008-1.87 2.569l-.861-.249a.367.367 0 0 0-.215.703l4.634 1.502a1.96 1.96 0 0 0 1.693-.233l2.812-1.875a1.96 1.96 0 0 0 .537-2.729l-1.114-1.651a1.96 1.96 0 0 0-2.717-.533l-.452.303a1.872 1.872 0 0 1-2.594-.508l-1.75-2.591a.695.695 0 0 0-.959-.19Zm-1.97 2.168a2.84 2.84 0 1 1 4.708-3.177l1.597 2.366.226-.152a4.106 4.106 0 0 1 5.689 1.115l1.114 1.651a4.106 4.106 0 0 1-1.125 5.713l-2.813 1.875a4.106 4.106 0 0 1-3.544.49l-4.634-1.503a2.512 2.512 0 0 1 1.146-4.875L9.58 11.804Z",
2882
+ clipRule: "evenodd"
2883
+ }), /*#__PURE__*/React__namespace.createElement("path", {
2884
+ fill: "currentColor",
2885
+ fillRule: "evenodd",
2886
+ d: "M4.8 1a1 1 0 0 1 .707.293l3.5 3.5a1 1 0 0 1-1.414 1.414L5.8 4.414v11.372l1.793-1.793a1 1 0 0 1 1.414 1.414l-3.5 3.5a1 1 0 0 1-1.415 0l-3.5-3.5a1 1 0 0 1 1.415-1.414L3.8 15.786V4.414L2.007 6.207A1 1 0 0 1 .593 4.793l3.5-3.5A1 1 0 0 1 4.798 1Z",
2887
+ clipRule: "evenodd"
2888
+ }));
2889
+
2824
2890
  const SvgSearch = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
2825
2891
  xmlns: "http://www.w3.org/2000/svg",
2826
2892
  width: "1em",
@@ -3538,6 +3604,7 @@ exports.ArrowUpDownIcon = SvgArrowUpDown;
3538
3604
  exports.ArrowUpIcon = SvgArrowUp;
3539
3605
  exports.ArrowUpLimitIcon = SvgArrowUpLimit;
3540
3606
  exports.BarchartIcon = SvgBarchart;
3607
+ exports.BookIcon = SvgBook;
3541
3608
  exports.BookmarkIcon = SvgBookmark;
3542
3609
  exports.BoxIcon = SvgBox;
3543
3610
  exports.BusColorIcon = SvgBusColor;
@@ -3666,6 +3733,8 @@ exports.PauseIcon = SvgPause;
3666
3733
  exports.PenIcon = SvgPen;
3667
3734
  exports.PercentInCircleIcon = SvgPercentInCircle;
3668
3735
  exports.PictureIcon = SvgPicture;
3736
+ exports.PillColorIcon = SvgPillColor;
3737
+ exports.PillIcon = SvgPill;
3669
3738
  exports.PinColorRedIcon = SvgPinColorRed;
3670
3739
  exports.PinIcon = SvgPin;
3671
3740
  exports.PlayIcon = SvgPlay;
@@ -3688,6 +3757,7 @@ exports.RefreshIcon = SvgRefresh;
3688
3757
  exports.RepeatIcon = SvgRepeat;
3689
3758
  exports.SchoolColorIcon = SvgSchoolColor;
3690
3759
  exports.SchoolIcon = SvgSchool;
3760
+ exports.ScrollIcon = SvgScroll;
3691
3761
  exports.SearchIcon = SvgSearch;
3692
3762
  exports.SetIcon = SvgSet;
3693
3763
  exports.SettingIcon = SvgSetting;
package/esm/Book.js ADDED
@@ -0,0 +1,17 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgBook = props => /*#__PURE__*/React.createElement("svg", _extends({
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: "1em",
7
+ height: "1em",
8
+ fill: "none",
9
+ viewBox: "0 0 24 24"
10
+ }, props), /*#__PURE__*/React.createElement("path", {
11
+ fill: "currentColor",
12
+ fillRule: "evenodd",
13
+ d: "M6.049 2A2.449 2.449 0 0 0 3.6 4.449v15.102a2.449 2.449 0 0 0 2.62 2.443c.045.004.09.006.135.006h13.163c.451 0 .817-.366.817-.816v-.409a.816.816 0 0 0-.817-.816H6.865a.816.816 0 0 1 0-1.633H19.518c.451 0 .817-.365.817-.816V2.816A.816.816 0 0 0 19.518 2H6.048Zm2.857 2.857a.816.816 0 0 0-.816.816v1.633c0 .451.365.816.816.816h7.347c.45 0 .816-.365.816-.816V5.673a.816.816 0 0 0-.816-.816H8.906Z",
14
+ clipRule: "evenodd"
15
+ }));
16
+
17
+ export { SvgBook as default };
package/esm/Pill.js ADDED
@@ -0,0 +1,25 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgPill = props => /*#__PURE__*/React.createElement("svg", _extends({
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: "1em",
7
+ height: "1em",
8
+ fill: "none",
9
+ viewBox: "0 0 24 24"
10
+ }, props), /*#__PURE__*/React.createElement("g", {
11
+ fill: "currentColor",
12
+ clipPath: "url(#pill_svg__a)"
13
+ }, /*#__PURE__*/React.createElement("path", {
14
+ d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z",
15
+ opacity: 0.4
16
+ }), /*#__PURE__*/React.createElement("path", {
17
+ d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
18
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
19
+ id: "pill_svg__a"
20
+ }, /*#__PURE__*/React.createElement("path", {
21
+ fill: "#fff",
22
+ d: "M0 0h24v24H0z"
23
+ }))));
24
+
25
+ export { SvgPill as default };
@@ -0,0 +1,18 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgPillColor = props => /*#__PURE__*/React.createElement("svg", _extends({
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: "1em",
7
+ height: "1em",
8
+ fill: "none",
9
+ viewBox: "0 0 24 24"
10
+ }, props), /*#__PURE__*/React.createElement("path", {
11
+ fill: "#D9CDF9",
12
+ d: "M12 4a5.657 5.657 0 0 1 8 8l-4 4-8-8 4-4Z"
13
+ }), /*#__PURE__*/React.createElement("path", {
14
+ fill: "#9C7EEF",
15
+ d: "m8 8 8 8-4 4a5.657 5.657 0 1 1-8-8l4-4Z"
16
+ }));
17
+
18
+ export { SvgPillColor as default };
package/esm/Scroll.js ADDED
@@ -0,0 +1,22 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgScroll = props => /*#__PURE__*/React.createElement("svg", _extends({
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: "1em",
7
+ height: "1em",
8
+ fill: "none",
9
+ viewBox: "0 0 24 24"
10
+ }, props), /*#__PURE__*/React.createElement("path", {
11
+ fill: "currentColor",
12
+ fillRule: "evenodd",
13
+ d: "M11.55 9.636a.695.695 0 0 0-.192.968l3.048 4.515c.883 1.31-.353 3.008-1.87 2.569l-.861-.249a.367.367 0 0 0-.215.703l4.634 1.502a1.96 1.96 0 0 0 1.693-.233l2.812-1.875a1.96 1.96 0 0 0 .537-2.729l-1.114-1.651a1.96 1.96 0 0 0-2.717-.533l-.452.303a1.872 1.872 0 0 1-2.594-.508l-1.75-2.591a.695.695 0 0 0-.959-.19Zm-1.97 2.168a2.84 2.84 0 1 1 4.708-3.177l1.597 2.366.226-.152a4.106 4.106 0 0 1 5.689 1.115l1.114 1.651a4.106 4.106 0 0 1-1.125 5.713l-2.813 1.875a4.106 4.106 0 0 1-3.544.49l-4.634-1.503a2.512 2.512 0 0 1 1.146-4.875L9.58 11.804Z",
14
+ clipRule: "evenodd"
15
+ }), /*#__PURE__*/React.createElement("path", {
16
+ fill: "currentColor",
17
+ fillRule: "evenodd",
18
+ d: "M4.8 1a1 1 0 0 1 .707.293l3.5 3.5a1 1 0 0 1-1.414 1.414L5.8 4.414v11.372l1.793-1.793a1 1 0 0 1 1.414 1.414l-3.5 3.5a1 1 0 0 1-1.415 0l-3.5-3.5a1 1 0 0 1 1.415-1.414L3.8 15.786V4.414L2.007 6.207A1 1 0 0 1 .593 4.793l3.5-3.5A1 1 0 0 1 4.798 1Z",
19
+ clipRule: "evenodd"
20
+ }));
21
+
22
+ export { SvgScroll as default };
package/esm/index.js CHANGED
@@ -16,6 +16,7 @@ export { default as ArrowUpIcon } from './ArrowUp.js';
16
16
  export { default as ArrowUpDownIcon } from './ArrowUpDown.js';
17
17
  export { default as ArrowUpLimitIcon } from './ArrowUpLimit.js';
18
18
  export { default as BarchartIcon } from './Barchart.js';
19
+ export { default as BookIcon } from './Book.js';
19
20
  export { default as BookmarkIcon } from './Bookmark.js';
20
21
  export { default as BoxIcon } from './Box.js';
21
22
  export { default as BusColorIcon } from './BusColor.js';
@@ -144,6 +145,8 @@ export { default as PauseIcon } from './Pause.js';
144
145
  export { default as PenIcon } from './Pen.js';
145
146
  export { default as PercentInCircleIcon } from './PercentInCircle.js';
146
147
  export { default as PictureIcon } from './Picture.js';
148
+ export { default as PillIcon } from './Pill.js';
149
+ export { default as PillColorIcon } from './PillColor.js';
147
150
  export { default as PinIcon } from './Pin.js';
148
151
  export { default as PinColorRedIcon } from './PinColorRed.js';
149
152
  export { default as PlayIcon } from './Play.js';
@@ -166,6 +169,7 @@ export { default as RefreshIcon } from './Refresh.js';
166
169
  export { default as RepeatIcon } from './Repeat.js';
167
170
  export { default as SchoolIcon } from './School.js';
168
171
  export { default as SchoolColorIcon } from './SchoolColor.js';
172
+ export { default as ScrollIcon } from './Scroll.js';
169
173
  export { default as SearchIcon } from './Search.js';
170
174
  export { default as SetIcon } from './Set.js';
171
175
  export { default as SettingIcon } from './Setting.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/icons",
3
- "version": "1.35.2",
3
+ "version": "1.37.0",
4
4
  "description": "Icon components for React based project",
5
5
  "author": "Sungchang Park <psch300@gmail.com> (https://github.com/psch300)",
6
6
  "homepage": "https://github.com/weareteamturing/bombe#readme",
@@ -38,5 +38,5 @@
38
38
  "peerDependencies": {
39
39
  "react": "^18.2.0"
40
40
  },
41
- "gitHead": "4bfbcc65e4193aabb637d9279d8d724ebffd8570"
41
+ "gitHead": "718f5dcf6952e7dfd7ff38f28ae644675b53d362"
42
42
  }
package/svg/book.svg ADDED
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.04895 2C4.69642 2 3.59998 3.09645 3.59998 4.44898V17.5102V19.551C3.59998 20.9036 4.69642 22 6.04895 22C6.10645 22 6.16348 21.998 6.21999 21.9941C6.2645 21.998 6.30956 22 6.35508 22H19.5183C19.9692 22 20.3347 21.6345 20.3347 21.1837V20.7755C20.3347 20.3247 19.9692 19.9592 19.5183 19.9592H8.46407H6.86528C6.41444 19.9592 6.04895 19.5937 6.04895 19.1429C6.04895 18.692 6.41444 18.3265 6.86528 18.3265H8.49793H19.5183C19.9692 18.3265 20.3347 17.961 20.3347 17.5102V2.81633C20.3347 2.36548 19.9692 2 19.5183 2H6.04895ZM8.9061 4.85714C8.45525 4.85714 8.08977 5.22262 8.08977 5.67347V7.30612C8.08977 7.75697 8.45525 8.12245 8.9061 8.12245H16.253C16.7039 8.12245 17.0694 7.75697 17.0694 7.30612V5.67347C17.0694 5.22262 16.7039 4.85714 16.253 4.85714H8.9061Z" fill="#8D94A0"/>
3
+ </svg>
package/svg/pill.svg ADDED
@@ -0,0 +1,11 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_16169_56)">
3
+ <path opacity="0.4" d="M12 3.99994C14.2091 1.7908 17.7909 1.7908 20 3.99994C22.2091 6.20908 22.2091 9.7908 20 11.9999L16 15.9999L8 7.99994L12 3.99994Z" fill="#8D94A0"/>
4
+ <path d="M8 7.99994L16 15.9999L12 19.9999C9.79086 22.2091 6.20914 22.2091 4 19.9999C1.79086 17.7908 1.79086 14.2091 4 11.9999L8 7.99994Z" fill="#8D94A0"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_16169_56">
8
+ <rect width="24" height="24" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 3.99993C14.2091 1.79079 17.7909 1.79079 20 3.99993C22.2091 6.20907 22.2091 9.7908 20 11.9999L16 15.9999L7.99999 7.99993L12 3.99993Z" fill="#D9CDF9"/>
3
+ <path d="M7.99999 7.99993L16 15.9999L12 19.9999C9.79085 22.2091 6.20913 22.2091 3.99999 19.9999C1.79085 17.7908 1.79086 14.2091 3.99999 11.9999L7.99999 7.99993Z" fill="#9C7EEF"/>
4
+ </svg>
package/svg/scroll.svg ADDED
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.5503 9.63626C11.2287 9.84943 11.1425 10.2839 11.3583 10.6037L14.4056 15.1192C15.2894 16.4288 14.0529 18.1269 12.5352 17.688L11.675 17.4392C11.4812 17.3831 11.2784 17.4939 11.2208 17.6874C11.164 17.8784 11.27 18.08 11.4596 18.1415L16.0938 19.6444C16.6641 19.8294 17.2877 19.7433 17.7866 19.4107L20.5988 17.5357C21.5035 16.9325 21.7446 15.7085 21.1364 14.8072L20.0218 13.1556C19.4175 12.26 18.2026 12.0221 17.305 12.6234L16.8527 12.9264C15.9957 13.5006 14.8357 13.2733 14.2587 12.4183L12.5097 9.82666C12.2964 9.51058 11.8682 9.42559 11.5503 9.63626ZM9.58026 11.8036C8.69782 10.496 9.05032 8.7198 10.3652 7.84827C11.6647 6.98694 13.4157 7.33442 14.2878 8.62674L15.8847 10.993L16.1111 10.8413C17.9906 9.58214 20.5344 10.0805 21.7999 11.9557L22.9145 13.6073C24.188 15.4944 23.683 18.0575 21.7888 19.3204L18.9765 21.1955C17.932 21.8919 16.6262 22.0722 15.432 21.6849L10.7979 20.1819C9.50092 19.7613 8.77618 18.383 9.16471 17.0761C9.52582 15.8614 10.7245 15.123 11.9445 15.3069L9.58026 11.8036Z" fill="#8D94A0"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.79949 1C5.06471 0.999982 5.31907 1.10532 5.50662 1.29284L9.00711 4.79284C9.39766 5.18334 9.3977 5.81651 9.00721 6.20706C8.61671 6.59761 7.98354 6.59765 7.59299 6.20716L5.79956 4.41398V15.7862L7.59299 13.993C7.98354 13.6025 8.61671 13.6026 9.00721 13.9931C9.3977 14.3837 9.39766 15.0169 9.00711 15.4074L5.50662 18.9074C5.31907 19.0949 5.06471 19.2002 4.79949 19.2002C4.53428 19.2002 4.27993 19.0948 4.09241 18.9073L0.592893 15.4073C0.202396 15.0167 0.20244 14.3835 0.592991 13.993C0.983543 13.6025 1.61671 13.6026 2.0072 13.9931L3.79956 15.7857V4.41445L2.0072 6.20706C1.61671 6.59761 0.983543 6.59765 0.592991 6.20716C0.20244 5.81666 0.202396 5.18349 0.592893 4.79294L4.09241 1.29294C4.27993 1.10539 4.53428 1.00002 4.79949 1Z" fill="#8D94A0"/>
4
+ </svg>