@teamturing/icons 1.22.0 → 1.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/dist/Workbook.d.ts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +94 -6
- package/esm/Ai.js +3 -3
- package/esm/AiSad.js +10 -3
- package/esm/UnlimitedTicket.js +25 -0
- package/esm/UnlimitedTicketColor.js +37 -0
- package/esm/Workbook.js +28 -0
- package/esm/index.js +3 -0
- package/package.json +2 -2
- package/svg/ai.svg +3 -3
- package/svg/ai_sad.svg +8 -1
- package/svg/workbook.svg +5 -0
package/dist/index.d.ts
CHANGED
|
@@ -182,6 +182,8 @@ export { default as TreasureboxIcon } from './Treasurebox';
|
|
|
182
182
|
export { default as TrophyIcon } from './Trophy';
|
|
183
183
|
export { default as UndoIcon } from './Undo';
|
|
184
184
|
export { default as UniversityIcon } from './University';
|
|
185
|
+
export { default as UnlimitedTicketIcon } from './UnlimitedTicket';
|
|
186
|
+
export { default as UnlimitedTicketColorIcon } from './UnlimitedTicketColor';
|
|
185
187
|
export { default as UserBlockedIcon } from './UserBlocked';
|
|
186
188
|
export { default as UserCheckIcon } from './UserCheck';
|
|
187
189
|
export { default as UserPlusIcon } from './UserPlus';
|
|
@@ -191,6 +193,7 @@ export { default as VideoColorIcon } from './VideoColor';
|
|
|
191
193
|
export { default as VoteColorIcon } from './VoteColor';
|
|
192
194
|
export { default as WarningIcon } from './Warning';
|
|
193
195
|
export { default as WifiIcon } from './Wifi';
|
|
196
|
+
export { default as WorkbookIcon } from './Workbook';
|
|
194
197
|
export { default as WorkbookColorIcon } from './WorkbookColor';
|
|
195
198
|
export { default as WrongIcon } from './Wrong';
|
|
196
199
|
export { default as YoutubeIcon } from './Youtube';
|
package/dist/index.js
CHANGED
|
@@ -44,15 +44,15 @@ const SvgAi = props => /*#__PURE__*/React__namespace.createElement("svg", _exten
|
|
|
44
44
|
viewBox: "0 0 24 24"
|
|
45
45
|
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
46
46
|
fill: "currentColor",
|
|
47
|
-
d: "
|
|
47
|
+
d: "M3.224 11.938a.784.784 0 0 0-.784-.785h-.087A2.353 2.353 0 0 0 0 13.506v1.282c0 1.3 1.053 2.352 2.353 2.352h.087a.784.784 0 0 0 .784-.784v-4.419Z"
|
|
48
48
|
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
49
49
|
fill: "currentColor",
|
|
50
50
|
fillRule: "evenodd",
|
|
51
|
-
d: "M13.
|
|
51
|
+
d: "M13.841 3.912c0 .744-.504 1.37-1.19 1.556v.516h3.305a3.875 3.875 0 0 1 3.875 3.875v7.909a3.875 3.875 0 0 1-3.875 3.875H8.047a3.875 3.875 0 0 1-3.875-3.875v-7.91a3.875 3.875 0 0 1 3.875-3.874h3.222v-.539a1.613 1.613 0 0 1 .5-3.145h.46c.89 0 1.612.722 1.612 1.612Zm.681 8.334c0-.668-.378-1.21-.845-1.21-.466 0-.844.542-.844 1.21 0 .668.378 1.21.844 1.21.467 0 .845-.542.845-1.21Zm-3.268.002c0-.667-.378-1.208-.845-1.208-.466 0-.844.54-.844 1.208 0 .667.378 1.208.844 1.208.467 0 .845-.54.845-1.208Zm-.868 3.065a.652.652 0 0 0-1.018.815c1.11 1.387 3.62 1.96 5.286.017a.652.652 0 0 0-.99-.849 2.106 2.106 0 0 1-3.278.017Z",
|
|
52
52
|
clipRule: "evenodd"
|
|
53
53
|
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
54
54
|
fill: "currentColor",
|
|
55
|
-
d: "
|
|
55
|
+
d: "M20.776 11.938c0-.434.351-.785.784-.785h.087c1.3 0 2.353 1.054 2.353 2.353v1.282c0 1.3-1.053 2.352-2.353 2.352h-.087a.784.784 0 0 1-.784-.784v-4.419Z"
|
|
56
56
|
}));
|
|
57
57
|
|
|
58
58
|
const SvgAiSad = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
@@ -61,12 +61,19 @@ const SvgAiSad = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
61
61
|
height: "1em",
|
|
62
62
|
fill: "none",
|
|
63
63
|
viewBox: "0 0 24 24"
|
|
64
|
-
}, props), /*#__PURE__*/React__namespace.createElement("
|
|
64
|
+
}, props), /*#__PURE__*/React__namespace.createElement("g", {
|
|
65
|
+
clipPath: "url(#ai_sad_svg__a)"
|
|
66
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
65
67
|
fill: "currentColor",
|
|
66
68
|
fillRule: "evenodd",
|
|
67
|
-
d: "M13.
|
|
69
|
+
d: "M13.841 3.912c0 .744-.504 1.37-1.19 1.556v.516h3.305a3.875 3.875 0 0 1 3.875 3.875v7.909a3.875 3.875 0 0 1-3.875 3.875H8.047a3.875 3.875 0 0 1-3.875-3.875v-7.91a3.875 3.875 0 0 1 3.875-3.874h3.222v-.539a1.613 1.613 0 0 1 .5-3.145h.46c.89 0 1.612.722 1.612 1.612Zm.681 8.334c0-.668-.378-1.21-.845-1.21-.466 0-.844.542-.844 1.21 0 .668.378 1.21.844 1.21.467 0 .845-.542.845-1.21Zm-3.268.002c0-.667-.378-1.208-.845-1.208-.466 0-.844.54-.844 1.208 0 .667.378 1.208.844 1.208.467 0 .845-.54.845-1.208Zm-8.03-.31a.784.784 0 0 0-.784-.785h-.087A2.353 2.353 0 0 0 0 13.506v1.282c0 1.3 1.053 2.352 2.353 2.352h.087a.784.784 0 0 0 .784-.784v-4.419Zm18.336-.785a.784.784 0 0 0-.784.784v4.42c0 .432.351.784.784.784h.087c1.3 0 2.353-1.054 2.353-2.353v-1.282c0-1.3-1.053-2.353-2.353-2.353h-.087Zm-6.994 6.099a.652.652 0 0 1-.917-.102 2.106 2.106 0 0 0-3.277.017.652.652 0 0 1-.99-.849c1.665-1.943 4.176-1.37 5.286.017a.652.652 0 0 1-.102.917Z",
|
|
68
70
|
clipRule: "evenodd"
|
|
69
|
-
}))
|
|
71
|
+
})), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
72
|
+
id: "ai_sad_svg__a"
|
|
73
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
74
|
+
fill: "#fff",
|
|
75
|
+
d: "M0 0h24v24H0z"
|
|
76
|
+
}))));
|
|
70
77
|
|
|
71
78
|
const SvgAimPoint = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
72
79
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2994,6 +3001,60 @@ const SvgUniversity = props => /*#__PURE__*/React__namespace.createElement("svg"
|
|
|
2994
3001
|
d: "M21.426 15.401a.92.92 0 1 1-1.841 0 .92.92 0 0 1 1.841 0Z"
|
|
2995
3002
|
}));
|
|
2996
3003
|
|
|
3004
|
+
const SvgUnlimitedTicket = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3005
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3006
|
+
width: "1em",
|
|
3007
|
+
height: "1em",
|
|
3008
|
+
fill: "none",
|
|
3009
|
+
viewBox: "0 0 32 32"
|
|
3010
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3011
|
+
fill: "#D1D5DB",
|
|
3012
|
+
fillRule: "evenodd",
|
|
3013
|
+
d: "M2.396 8.313c-.53 0-.958.429-.958.958v4.312a1.917 1.917 0 0 1 0 3.834v4.312c0 .53.429.959.958.959h18.208c.53 0 .959-.43.959-.959v-4.312a1.917 1.917 0 0 1 0-3.834V9.271c0-.53-.43-.959-.959-.959H2.396Zm6.331 9.44c.02.173.161.303.33.303h4.886c.169 0 .31-.13.33-.302l.419-3.719c.038-.333-.366-.516-.58-.262l-1.243 1.475-.919-2.01a.491.491 0 0 0-.9 0l-.92 2.01-1.242-1.475c-.214-.254-.618-.071-.58.262l.42 3.719Z",
|
|
3014
|
+
clipRule: "evenodd"
|
|
3015
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3016
|
+
fill: "currentColor",
|
|
3017
|
+
d: "M29.382 17.39a4.089 4.089 0 0 0-2.937-1.09c-1.89.064-3.056 1.28-4.407 2.688l-.007.007-.008-.007c-1.35-1.407-2.51-2.623-4.406-2.687A4.072 4.072 0 0 0 14.7 17.39a3.947 3.947 0 0 0-1.284 2.9c0 1.117.45 2.149 1.27 2.906.76.7 1.749 1.089 2.797 1.089h.147c1.89-.064 3.056-1.28 4.407-2.688v-.007l.007.008c1.351 1.407 2.51 2.623 4.407 2.687h.148a4.078 4.078 0 0 0 2.797-1.09 3.914 3.914 0 0 0 1.27-2.906c0-1.089-.465-2.15-1.285-2.9Zm-11.817 5.127a2.221 2.221 0 0 1-1.594-.587 2.206 2.206 0 0 1-.709-1.64 2.232 2.232 0 0 1 2.222-2.228h.081c1.07.035 1.808.75 3.115 2.114.03.036.066.07.096.1l-.008.013.008.007c-.03.036-.067.071-.096.1-1.307 1.371-2.045 2.085-3.115 2.12Zm10.548-.587a2.226 2.226 0 0 1-1.595.587c-1.07-.035-1.808-.75-3.114-2.115a1.264 1.264 0 0 0-.096-.099l.007-.014h-.007c.03-.035.066-.07.096-.099 1.306-1.365 2.044-2.079 3.114-2.114a2.278 2.278 0 0 1 1.587.594c.465.424.716 1.004.716 1.633 0 .623-.25 1.203-.708 1.627Z"
|
|
3018
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3019
|
+
fill: "#fff",
|
|
3020
|
+
fillRule: "evenodd",
|
|
3021
|
+
d: "M22.53 18.479c1.157-1.18 2.258-2.122 3.915-2.178a4.089 4.089 0 0 1 2.937 1.089c.82.75 1.285 1.81 1.285 2.9 0 1.117-.45 2.149-1.27 2.906a4.078 4.078 0 0 1-2.797 1.089h-.148c-1.661-.056-2.757-.996-3.91-2.174l-.256-.263-.154-.16-.09-.087.003-.003-.007-.008v.008l-.003.002-.007.008-.077.08c-.137.143-.274.285-.409.423-1.155 1.178-2.256 2.118-3.91 2.174h-.148a4.111 4.111 0 0 1-2.798-1.09 3.914 3.914 0 0 1-1.27-2.906c0-1.089.466-2.15 1.285-2.9a4.072 4.072 0 0 1 2.916-1.088c1.663.056 2.759.998 3.914 2.177l.318.329.155.161.02.02.007.007.007-.007.003-.003.172-.179.317-.327Zm-.5-.519c1.167-1.191 2.45-2.312 4.39-2.378a4.81 4.81 0 0 1 3.45 1.28 4.665 4.665 0 0 1 1.515 3.427c0 1.317-.533 2.54-1.5 3.434a4.797 4.797 0 0 1-3.285 1.28H26.428c-1.945-.065-3.223-1.184-4.386-2.374-1.166 1.19-2.448 2.309-4.386 2.374H17.484a4.83 4.83 0 0 1-3.285-1.279 4.632 4.632 0 0 1-1.501-3.435c0-1.29.55-2.542 1.515-3.427a4.79 4.79 0 0 1 3.427-1.28c1.947.066 3.226 1.187 4.39 2.378Zm-.168.86.161.168-.161-.169Zm-4.297 3.697c1.07-.035 1.808-.75 3.115-2.122.03-.028.066-.063.096-.099l-.008-.007.008-.014a1.264 1.264 0 0 1-.096-.099c-1.307-1.365-2.045-2.079-3.115-2.114h-.081a2.232 2.232 0 0 0-2.222 2.228c0 .636.251 1.216.709 1.64.428.396.996.608 1.594.587Zm4.477-.916-.004-.003h.007l-.003.003Zm1.963-2.03c-.188.188-.387.395-.601.62a1.39 1.39 0 0 0-.089.09l-.007.008h.007l-.007.014c.03.029.066.064.096.1 1.306 1.364 2.044 2.079 3.114 2.114a2.226 2.226 0 0 0 1.595-.587 2.197 2.197 0 0 0 .708-1.627c0-.629-.25-1.209-.716-1.633a2.278 2.278 0 0 0-1.587-.594c-.894.03-1.556.533-2.513 1.494Z",
|
|
3022
|
+
clipRule: "evenodd"
|
|
3023
|
+
}));
|
|
3024
|
+
|
|
3025
|
+
const SvgUnlimitedTicketColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3026
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3027
|
+
width: "1em",
|
|
3028
|
+
height: "1em",
|
|
3029
|
+
fill: "none",
|
|
3030
|
+
viewBox: "0 0 32 32"
|
|
3031
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3032
|
+
fill: "url(#unlimited_ticket_color_svg__a)",
|
|
3033
|
+
fillRule: "evenodd",
|
|
3034
|
+
d: "M2.396 8.313c-.53 0-.958.429-.958.958v4.312a1.917 1.917 0 0 1 0 3.834v4.312c0 .53.429.959.958.959h18.208c.53 0 .959-.43.959-.959v-4.312a1.917 1.917 0 0 1 0-3.834V9.271c0-.53-.43-.959-.959-.959H2.396Zm6.331 9.44c.02.173.161.303.33.303h4.886c.169 0 .31-.13.33-.302l.419-3.719c.038-.333-.366-.516-.58-.262l-1.243 1.475-.919-2.01a.491.491 0 0 0-.9 0l-.92 2.01-1.242-1.475c-.214-.254-.618-.071-.58.262l.42 3.719Z",
|
|
3035
|
+
clipRule: "evenodd"
|
|
3036
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3037
|
+
fill: "#9C7EEF",
|
|
3038
|
+
d: "M29.382 17.39a4.089 4.089 0 0 0-2.937-1.09c-1.89.064-3.056 1.28-4.407 2.688l-.007.007-.008-.007c-1.35-1.407-2.51-2.623-4.406-2.687A4.072 4.072 0 0 0 14.7 17.39a3.947 3.947 0 0 0-1.284 2.9c0 1.117.45 2.149 1.27 2.906.76.7 1.749 1.089 2.797 1.089h.147c1.89-.064 3.056-1.28 4.407-2.688v-.007l.007.008c1.351 1.407 2.51 2.623 4.407 2.687h.148a4.078 4.078 0 0 0 2.797-1.09 3.914 3.914 0 0 0 1.27-2.906c0-1.089-.465-2.15-1.285-2.9Zm-11.817 5.127a2.221 2.221 0 0 1-1.594-.587 2.206 2.206 0 0 1-.709-1.64 2.232 2.232 0 0 1 2.222-2.228h.081c1.07.035 1.808.75 3.115 2.114.03.036.066.07.096.1l-.008.013.008.007c-.03.036-.067.071-.096.1-1.307 1.371-2.045 2.085-3.115 2.12Zm10.548-.587a2.226 2.226 0 0 1-1.595.587c-1.07-.035-1.808-.75-3.114-2.115a1.264 1.264 0 0 0-.096-.099l.007-.014h-.007c.03-.035.066-.07.096-.099 1.306-1.365 2.044-2.079 3.114-2.114a2.278 2.278 0 0 1 1.587.594c.465.424.716 1.004.716 1.633 0 .623-.25 1.203-.708 1.627Z"
|
|
3039
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3040
|
+
fill: "#fff",
|
|
3041
|
+
fillRule: "evenodd",
|
|
3042
|
+
d: "M22.53 18.479c1.157-1.18 2.258-2.122 3.915-2.178a4.089 4.089 0 0 1 2.937 1.089c.82.75 1.285 1.81 1.285 2.9 0 1.117-.45 2.149-1.27 2.906a4.078 4.078 0 0 1-2.797 1.089h-.148c-1.661-.056-2.757-.996-3.91-2.174l-.256-.263-.154-.16-.09-.087.003-.003-.007-.008v.008l-.003.002-.007.008-.077.08c-.137.143-.274.285-.409.423-1.155 1.178-2.256 2.118-3.91 2.174h-.148a4.111 4.111 0 0 1-2.798-1.09 3.914 3.914 0 0 1-1.27-2.906c0-1.089.466-2.15 1.285-2.9a4.072 4.072 0 0 1 2.916-1.088c1.663.056 2.759.998 3.914 2.177l.318.329.155.161.02.02.007.007.007-.007.003-.003.172-.179.317-.327Zm-.5-.519c1.167-1.191 2.45-2.312 4.39-2.378a4.81 4.81 0 0 1 3.45 1.28 4.665 4.665 0 0 1 1.515 3.427c0 1.317-.533 2.54-1.5 3.434a4.797 4.797 0 0 1-3.285 1.28H26.428c-1.945-.065-3.223-1.184-4.386-2.374-1.166 1.19-2.448 2.309-4.386 2.374H17.484a4.83 4.83 0 0 1-3.285-1.279 4.632 4.632 0 0 1-1.501-3.435c0-1.29.55-2.542 1.515-3.427a4.79 4.79 0 0 1 3.427-1.28c1.947.066 3.226 1.187 4.39 2.378Zm-.168.86.161.168-.161-.169Zm-4.297 3.697c1.07-.035 1.808-.75 3.115-2.122.03-.028.066-.063.096-.099l-.008-.007.008-.014a1.264 1.264 0 0 1-.096-.099c-1.307-1.365-2.045-2.079-3.115-2.114h-.081a2.232 2.232 0 0 0-2.222 2.228c0 .636.251 1.216.709 1.64.428.396.996.608 1.594.587Zm4.477-.916-.004-.003h.007l-.003.003Zm1.963-2.03c-.188.188-.387.395-.601.62a1.39 1.39 0 0 0-.089.09l-.007.008h.007l-.007.014c.03.029.066.064.096.1 1.306 1.364 2.044 2.079 3.114 2.114a2.226 2.226 0 0 0 1.595-.587 2.197 2.197 0 0 0 .708-1.627c0-.629-.25-1.209-.716-1.633a2.278 2.278 0 0 0-1.587-.594c-.894.03-1.556.533-2.513 1.494Z",
|
|
3043
|
+
clipRule: "evenodd"
|
|
3044
|
+
}), /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("linearGradient", {
|
|
3045
|
+
id: "unlimited_ticket_color_svg__a",
|
|
3046
|
+
x1: 2.587,
|
|
3047
|
+
x2: 14.343,
|
|
3048
|
+
y1: 10.058,
|
|
3049
|
+
y2: 25.686,
|
|
3050
|
+
gradientUnits: "userSpaceOnUse"
|
|
3051
|
+
}, /*#__PURE__*/React__namespace.createElement("stop", {
|
|
3052
|
+
stopColor: "#0F0E0F"
|
|
3053
|
+
}), /*#__PURE__*/React__namespace.createElement("stop", {
|
|
3054
|
+
offset: 1,
|
|
3055
|
+
stopColor: "#595959"
|
|
3056
|
+
}))));
|
|
3057
|
+
|
|
2997
3058
|
const SvgUserBlocked = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2998
3059
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2999
3060
|
width: "1em",
|
|
@@ -3135,6 +3196,30 @@ const SvgWifi = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
3135
3196
|
clipRule: "evenodd"
|
|
3136
3197
|
}));
|
|
3137
3198
|
|
|
3199
|
+
const SvgWorkbook = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3200
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3201
|
+
width: "1em",
|
|
3202
|
+
height: "1em",
|
|
3203
|
+
fill: "none",
|
|
3204
|
+
viewBox: "0 0 24 24"
|
|
3205
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3206
|
+
fill: "currentColor",
|
|
3207
|
+
d: "M3 3.046C3 2.192 3.692 1.5 4.546 1.5h1.16v20.875h-1.16A1.546 1.546 0 0 1 3 20.829V3.046Z"
|
|
3208
|
+
}), /*#__PURE__*/React__namespace.createElement("rect", {
|
|
3209
|
+
width: 9.278,
|
|
3210
|
+
height: 2.319,
|
|
3211
|
+
x: 8.752,
|
|
3212
|
+
y: 4.912,
|
|
3213
|
+
fill: "currentColor",
|
|
3214
|
+
rx: 1.16
|
|
3215
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3216
|
+
fill: "currentColor",
|
|
3217
|
+
fillRule: "evenodd",
|
|
3218
|
+
d: "M20.01 22.375H5.705V1.5H20.01c.854 0 1.547.692 1.547 1.546V20.83c0 .854-.693 1.546-1.547 1.546ZM9.911 4.912a1.16 1.16 0 1 0 0 2.32h6.958a1.16 1.16 0 1 0 0-2.32H9.912Z",
|
|
3219
|
+
clipRule: "evenodd",
|
|
3220
|
+
opacity: 0.6
|
|
3221
|
+
}));
|
|
3222
|
+
|
|
3138
3223
|
const SvgWorkbookColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
3139
3224
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3140
3225
|
width: "1em",
|
|
@@ -3373,6 +3458,8 @@ exports.TreasureboxIcon = SvgTreasurebox;
|
|
|
3373
3458
|
exports.TrophyIcon = SvgTrophy;
|
|
3374
3459
|
exports.UndoIcon = SvgUndo;
|
|
3375
3460
|
exports.UniversityIcon = SvgUniversity;
|
|
3461
|
+
exports.UnlimitedTicketColorIcon = SvgUnlimitedTicketColor;
|
|
3462
|
+
exports.UnlimitedTicketIcon = SvgUnlimitedTicket;
|
|
3376
3463
|
exports.UserBlockedIcon = SvgUserBlocked;
|
|
3377
3464
|
exports.UserCheckIcon = SvgUserCheck;
|
|
3378
3465
|
exports.UserPlusIcon = SvgUserPlus;
|
|
@@ -3383,5 +3470,6 @@ exports.VoteColorIcon = SvgVoteColor;
|
|
|
3383
3470
|
exports.WarningIcon = SvgWarning;
|
|
3384
3471
|
exports.WifiIcon = SvgWifi;
|
|
3385
3472
|
exports.WorkbookColorIcon = SvgWorkbookColor;
|
|
3473
|
+
exports.WorkbookIcon = SvgWorkbook;
|
|
3386
3474
|
exports.WrongIcon = SvgWrong;
|
|
3387
3475
|
exports.YoutubeIcon = SvgYoutube;
|
package/esm/Ai.js
CHANGED
|
@@ -9,15 +9,15 @@ const SvgAi = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
|
9
9
|
viewBox: "0 0 24 24"
|
|
10
10
|
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
11
|
fill: "currentColor",
|
|
12
|
-
d: "
|
|
12
|
+
d: "M3.224 11.938a.784.784 0 0 0-.784-.785h-.087A2.353 2.353 0 0 0 0 13.506v1.282c0 1.3 1.053 2.352 2.353 2.352h.087a.784.784 0 0 0 .784-.784v-4.419Z"
|
|
13
13
|
}), /*#__PURE__*/React.createElement("path", {
|
|
14
14
|
fill: "currentColor",
|
|
15
15
|
fillRule: "evenodd",
|
|
16
|
-
d: "M13.
|
|
16
|
+
d: "M13.841 3.912c0 .744-.504 1.37-1.19 1.556v.516h3.305a3.875 3.875 0 0 1 3.875 3.875v7.909a3.875 3.875 0 0 1-3.875 3.875H8.047a3.875 3.875 0 0 1-3.875-3.875v-7.91a3.875 3.875 0 0 1 3.875-3.874h3.222v-.539a1.613 1.613 0 0 1 .5-3.145h.46c.89 0 1.612.722 1.612 1.612Zm.681 8.334c0-.668-.378-1.21-.845-1.21-.466 0-.844.542-.844 1.21 0 .668.378 1.21.844 1.21.467 0 .845-.542.845-1.21Zm-3.268.002c0-.667-.378-1.208-.845-1.208-.466 0-.844.54-.844 1.208 0 .667.378 1.208.844 1.208.467 0 .845-.54.845-1.208Zm-.868 3.065a.652.652 0 0 0-1.018.815c1.11 1.387 3.62 1.96 5.286.017a.652.652 0 0 0-.99-.849 2.106 2.106 0 0 1-3.278.017Z",
|
|
17
17
|
clipRule: "evenodd"
|
|
18
18
|
}), /*#__PURE__*/React.createElement("path", {
|
|
19
19
|
fill: "currentColor",
|
|
20
|
-
d: "
|
|
20
|
+
d: "M20.776 11.938c0-.434.351-.785.784-.785h.087c1.3 0 2.353 1.054 2.353 2.353v1.282c0 1.3-1.053 2.352-2.353 2.352h-.087a.784.784 0 0 1-.784-.784v-4.419Z"
|
|
21
21
|
}));
|
|
22
22
|
|
|
23
23
|
export { SvgAi as default };
|
package/esm/AiSad.js
CHANGED
|
@@ -7,11 +7,18 @@ const SvgAiSad = props => /*#__PURE__*/React.createElement("svg", _extends({
|
|
|
7
7
|
height: "1em",
|
|
8
8
|
fill: "none",
|
|
9
9
|
viewBox: "0 0 24 24"
|
|
10
|
-
}, props), /*#__PURE__*/React.createElement("
|
|
10
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
11
|
+
clipPath: "url(#ai_sad_svg__a)"
|
|
12
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
11
13
|
fill: "currentColor",
|
|
12
14
|
fillRule: "evenodd",
|
|
13
|
-
d: "M13.
|
|
15
|
+
d: "M13.841 3.912c0 .744-.504 1.37-1.19 1.556v.516h3.305a3.875 3.875 0 0 1 3.875 3.875v7.909a3.875 3.875 0 0 1-3.875 3.875H8.047a3.875 3.875 0 0 1-3.875-3.875v-7.91a3.875 3.875 0 0 1 3.875-3.874h3.222v-.539a1.613 1.613 0 0 1 .5-3.145h.46c.89 0 1.612.722 1.612 1.612Zm.681 8.334c0-.668-.378-1.21-.845-1.21-.466 0-.844.542-.844 1.21 0 .668.378 1.21.844 1.21.467 0 .845-.542.845-1.21Zm-3.268.002c0-.667-.378-1.208-.845-1.208-.466 0-.844.54-.844 1.208 0 .667.378 1.208.844 1.208.467 0 .845-.54.845-1.208Zm-8.03-.31a.784.784 0 0 0-.784-.785h-.087A2.353 2.353 0 0 0 0 13.506v1.282c0 1.3 1.053 2.352 2.353 2.352h.087a.784.784 0 0 0 .784-.784v-4.419Zm18.336-.785a.784.784 0 0 0-.784.784v4.42c0 .432.351.784.784.784h.087c1.3 0 2.353-1.054 2.353-2.353v-1.282c0-1.3-1.053-2.353-2.353-2.353h-.087Zm-6.994 6.099a.652.652 0 0 1-.917-.102 2.106 2.106 0 0 0-3.277.017.652.652 0 0 1-.99-.849c1.665-1.943 4.176-1.37 5.286.017a.652.652 0 0 1-.102.917Z",
|
|
14
16
|
clipRule: "evenodd"
|
|
15
|
-
}))
|
|
17
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
18
|
+
id: "ai_sad_svg__a"
|
|
19
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
fill: "#fff",
|
|
21
|
+
d: "M0 0h24v24H0z"
|
|
22
|
+
}))));
|
|
16
23
|
|
|
17
24
|
export { SvgAiSad as default };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgUnlimitedTicket = 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 32 32"
|
|
10
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "#D1D5DB",
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M2.396 8.313c-.53 0-.958.429-.958.958v4.312a1.917 1.917 0 0 1 0 3.834v4.312c0 .53.429.959.958.959h18.208c.53 0 .959-.43.959-.959v-4.312a1.917 1.917 0 0 1 0-3.834V9.271c0-.53-.43-.959-.959-.959H2.396Zm6.331 9.44c.02.173.161.303.33.303h4.886c.169 0 .31-.13.33-.302l.419-3.719c.038-.333-.366-.516-.58-.262l-1.243 1.475-.919-2.01a.491.491 0 0 0-.9 0l-.92 2.01-1.242-1.475c-.214-.254-.618-.071-.58.262l.42 3.719Z",
|
|
14
|
+
clipRule: "evenodd"
|
|
15
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
fill: "currentColor",
|
|
17
|
+
d: "M29.382 17.39a4.089 4.089 0 0 0-2.937-1.09c-1.89.064-3.056 1.28-4.407 2.688l-.007.007-.008-.007c-1.35-1.407-2.51-2.623-4.406-2.687A4.072 4.072 0 0 0 14.7 17.39a3.947 3.947 0 0 0-1.284 2.9c0 1.117.45 2.149 1.27 2.906.76.7 1.749 1.089 2.797 1.089h.147c1.89-.064 3.056-1.28 4.407-2.688v-.007l.007.008c1.351 1.407 2.51 2.623 4.407 2.687h.148a4.078 4.078 0 0 0 2.797-1.09 3.914 3.914 0 0 0 1.27-2.906c0-1.089-.465-2.15-1.285-2.9Zm-11.817 5.127a2.221 2.221 0 0 1-1.594-.587 2.206 2.206 0 0 1-.709-1.64 2.232 2.232 0 0 1 2.222-2.228h.081c1.07.035 1.808.75 3.115 2.114.03.036.066.07.096.1l-.008.013.008.007c-.03.036-.067.071-.096.1-1.307 1.371-2.045 2.085-3.115 2.12Zm10.548-.587a2.226 2.226 0 0 1-1.595.587c-1.07-.035-1.808-.75-3.114-2.115a1.264 1.264 0 0 0-.096-.099l.007-.014h-.007c.03-.035.066-.07.096-.099 1.306-1.365 2.044-2.079 3.114-2.114a2.278 2.278 0 0 1 1.587.594c.465.424.716 1.004.716 1.633 0 .623-.25 1.203-.708 1.627Z"
|
|
18
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
19
|
+
fill: "#fff",
|
|
20
|
+
fillRule: "evenodd",
|
|
21
|
+
d: "M22.53 18.479c1.157-1.18 2.258-2.122 3.915-2.178a4.089 4.089 0 0 1 2.937 1.089c.82.75 1.285 1.81 1.285 2.9 0 1.117-.45 2.149-1.27 2.906a4.078 4.078 0 0 1-2.797 1.089h-.148c-1.661-.056-2.757-.996-3.91-2.174l-.256-.263-.154-.16-.09-.087.003-.003-.007-.008v.008l-.003.002-.007.008-.077.08c-.137.143-.274.285-.409.423-1.155 1.178-2.256 2.118-3.91 2.174h-.148a4.111 4.111 0 0 1-2.798-1.09 3.914 3.914 0 0 1-1.27-2.906c0-1.089.466-2.15 1.285-2.9a4.072 4.072 0 0 1 2.916-1.088c1.663.056 2.759.998 3.914 2.177l.318.329.155.161.02.02.007.007.007-.007.003-.003.172-.179.317-.327Zm-.5-.519c1.167-1.191 2.45-2.312 4.39-2.378a4.81 4.81 0 0 1 3.45 1.28 4.665 4.665 0 0 1 1.515 3.427c0 1.317-.533 2.54-1.5 3.434a4.797 4.797 0 0 1-3.285 1.28H26.428c-1.945-.065-3.223-1.184-4.386-2.374-1.166 1.19-2.448 2.309-4.386 2.374H17.484a4.83 4.83 0 0 1-3.285-1.279 4.632 4.632 0 0 1-1.501-3.435c0-1.29.55-2.542 1.515-3.427a4.79 4.79 0 0 1 3.427-1.28c1.947.066 3.226 1.187 4.39 2.378Zm-.168.86.161.168-.161-.169Zm-4.297 3.697c1.07-.035 1.808-.75 3.115-2.122.03-.028.066-.063.096-.099l-.008-.007.008-.014a1.264 1.264 0 0 1-.096-.099c-1.307-1.365-2.045-2.079-3.115-2.114h-.081a2.232 2.232 0 0 0-2.222 2.228c0 .636.251 1.216.709 1.64.428.396.996.608 1.594.587Zm4.477-.916-.004-.003h.007l-.003.003Zm1.963-2.03c-.188.188-.387.395-.601.62a1.39 1.39 0 0 0-.089.09l-.007.008h.007l-.007.014c.03.029.066.064.096.1 1.306 1.364 2.044 2.079 3.114 2.114a2.226 2.226 0 0 0 1.595-.587 2.197 2.197 0 0 0 .708-1.627c0-.629-.25-1.209-.716-1.633a2.278 2.278 0 0 0-1.587-.594c-.894.03-1.556.533-2.513 1.494Z",
|
|
22
|
+
clipRule: "evenodd"
|
|
23
|
+
}));
|
|
24
|
+
|
|
25
|
+
export { SvgUnlimitedTicket as default };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgUnlimitedTicketColor = 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 32 32"
|
|
10
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
fill: "url(#unlimited_ticket_color_svg__a)",
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M2.396 8.313c-.53 0-.958.429-.958.958v4.312a1.917 1.917 0 0 1 0 3.834v4.312c0 .53.429.959.958.959h18.208c.53 0 .959-.43.959-.959v-4.312a1.917 1.917 0 0 1 0-3.834V9.271c0-.53-.43-.959-.959-.959H2.396Zm6.331 9.44c.02.173.161.303.33.303h4.886c.169 0 .31-.13.33-.302l.419-3.719c.038-.333-.366-.516-.58-.262l-1.243 1.475-.919-2.01a.491.491 0 0 0-.9 0l-.92 2.01-1.242-1.475c-.214-.254-.618-.071-.58.262l.42 3.719Z",
|
|
14
|
+
clipRule: "evenodd"
|
|
15
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
fill: "#9C7EEF",
|
|
17
|
+
d: "M29.382 17.39a4.089 4.089 0 0 0-2.937-1.09c-1.89.064-3.056 1.28-4.407 2.688l-.007.007-.008-.007c-1.35-1.407-2.51-2.623-4.406-2.687A4.072 4.072 0 0 0 14.7 17.39a3.947 3.947 0 0 0-1.284 2.9c0 1.117.45 2.149 1.27 2.906.76.7 1.749 1.089 2.797 1.089h.147c1.89-.064 3.056-1.28 4.407-2.688v-.007l.007.008c1.351 1.407 2.51 2.623 4.407 2.687h.148a4.078 4.078 0 0 0 2.797-1.09 3.914 3.914 0 0 0 1.27-2.906c0-1.089-.465-2.15-1.285-2.9Zm-11.817 5.127a2.221 2.221 0 0 1-1.594-.587 2.206 2.206 0 0 1-.709-1.64 2.232 2.232 0 0 1 2.222-2.228h.081c1.07.035 1.808.75 3.115 2.114.03.036.066.07.096.1l-.008.013.008.007c-.03.036-.067.071-.096.1-1.307 1.371-2.045 2.085-3.115 2.12Zm10.548-.587a2.226 2.226 0 0 1-1.595.587c-1.07-.035-1.808-.75-3.114-2.115a1.264 1.264 0 0 0-.096-.099l.007-.014h-.007c.03-.035.066-.07.096-.099 1.306-1.365 2.044-2.079 3.114-2.114a2.278 2.278 0 0 1 1.587.594c.465.424.716 1.004.716 1.633 0 .623-.25 1.203-.708 1.627Z"
|
|
18
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
19
|
+
fill: "#fff",
|
|
20
|
+
fillRule: "evenodd",
|
|
21
|
+
d: "M22.53 18.479c1.157-1.18 2.258-2.122 3.915-2.178a4.089 4.089 0 0 1 2.937 1.089c.82.75 1.285 1.81 1.285 2.9 0 1.117-.45 2.149-1.27 2.906a4.078 4.078 0 0 1-2.797 1.089h-.148c-1.661-.056-2.757-.996-3.91-2.174l-.256-.263-.154-.16-.09-.087.003-.003-.007-.008v.008l-.003.002-.007.008-.077.08c-.137.143-.274.285-.409.423-1.155 1.178-2.256 2.118-3.91 2.174h-.148a4.111 4.111 0 0 1-2.798-1.09 3.914 3.914 0 0 1-1.27-2.906c0-1.089.466-2.15 1.285-2.9a4.072 4.072 0 0 1 2.916-1.088c1.663.056 2.759.998 3.914 2.177l.318.329.155.161.02.02.007.007.007-.007.003-.003.172-.179.317-.327Zm-.5-.519c1.167-1.191 2.45-2.312 4.39-2.378a4.81 4.81 0 0 1 3.45 1.28 4.665 4.665 0 0 1 1.515 3.427c0 1.317-.533 2.54-1.5 3.434a4.797 4.797 0 0 1-3.285 1.28H26.428c-1.945-.065-3.223-1.184-4.386-2.374-1.166 1.19-2.448 2.309-4.386 2.374H17.484a4.83 4.83 0 0 1-3.285-1.279 4.632 4.632 0 0 1-1.501-3.435c0-1.29.55-2.542 1.515-3.427a4.79 4.79 0 0 1 3.427-1.28c1.947.066 3.226 1.187 4.39 2.378Zm-.168.86.161.168-.161-.169Zm-4.297 3.697c1.07-.035 1.808-.75 3.115-2.122.03-.028.066-.063.096-.099l-.008-.007.008-.014a1.264 1.264 0 0 1-.096-.099c-1.307-1.365-2.045-2.079-3.115-2.114h-.081a2.232 2.232 0 0 0-2.222 2.228c0 .636.251 1.216.709 1.64.428.396.996.608 1.594.587Zm4.477-.916-.004-.003h.007l-.003.003Zm1.963-2.03c-.188.188-.387.395-.601.62a1.39 1.39 0 0 0-.089.09l-.007.008h.007l-.007.014c.03.029.066.064.096.1 1.306 1.364 2.044 2.079 3.114 2.114a2.226 2.226 0 0 0 1.595-.587 2.197 2.197 0 0 0 .708-1.627c0-.629-.25-1.209-.716-1.633a2.278 2.278 0 0 0-1.587-.594c-.894.03-1.556.533-2.513 1.494Z",
|
|
22
|
+
clipRule: "evenodd"
|
|
23
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
24
|
+
id: "unlimited_ticket_color_svg__a",
|
|
25
|
+
x1: 2.587,
|
|
26
|
+
x2: 14.343,
|
|
27
|
+
y1: 10.058,
|
|
28
|
+
y2: 25.686,
|
|
29
|
+
gradientUnits: "userSpaceOnUse"
|
|
30
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
31
|
+
stopColor: "#0F0E0F"
|
|
32
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
33
|
+
offset: 1,
|
|
34
|
+
stopColor: "#595959"
|
|
35
|
+
}))));
|
|
36
|
+
|
|
37
|
+
export { SvgUnlimitedTicketColor as default };
|
package/esm/Workbook.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgWorkbook = 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
|
+
d: "M3 3.046C3 2.192 3.692 1.5 4.546 1.5h1.16v20.875h-1.16A1.546 1.546 0 0 1 3 20.829V3.046Z"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
14
|
+
width: 9.278,
|
|
15
|
+
height: 2.319,
|
|
16
|
+
x: 8.752,
|
|
17
|
+
y: 4.912,
|
|
18
|
+
fill: "currentColor",
|
|
19
|
+
rx: 1.16
|
|
20
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
fill: "currentColor",
|
|
22
|
+
fillRule: "evenodd",
|
|
23
|
+
d: "M20.01 22.375H5.705V1.5H20.01c.854 0 1.547.692 1.547 1.546V20.83c0 .854-.693 1.546-1.547 1.546ZM9.911 4.912a1.16 1.16 0 1 0 0 2.32h6.958a1.16 1.16 0 1 0 0-2.32H9.912Z",
|
|
24
|
+
clipRule: "evenodd",
|
|
25
|
+
opacity: 0.6
|
|
26
|
+
}));
|
|
27
|
+
|
|
28
|
+
export { SvgWorkbook as default };
|
package/esm/index.js
CHANGED
|
@@ -182,6 +182,8 @@ export { default as TreasureboxIcon } from './Treasurebox.js';
|
|
|
182
182
|
export { default as TrophyIcon } from './Trophy.js';
|
|
183
183
|
export { default as UndoIcon } from './Undo.js';
|
|
184
184
|
export { default as UniversityIcon } from './University.js';
|
|
185
|
+
export { default as UnlimitedTicketIcon } from './UnlimitedTicket.js';
|
|
186
|
+
export { default as UnlimitedTicketColorIcon } from './UnlimitedTicketColor.js';
|
|
185
187
|
export { default as UserBlockedIcon } from './UserBlocked.js';
|
|
186
188
|
export { default as UserCheckIcon } from './UserCheck.js';
|
|
187
189
|
export { default as UserPlusIcon } from './UserPlus.js';
|
|
@@ -191,6 +193,7 @@ export { default as VideoColorIcon } from './VideoColor.js';
|
|
|
191
193
|
export { default as VoteColorIcon } from './VoteColor.js';
|
|
192
194
|
export { default as WarningIcon } from './Warning.js';
|
|
193
195
|
export { default as WifiIcon } from './Wifi.js';
|
|
196
|
+
export { default as WorkbookIcon } from './Workbook.js';
|
|
194
197
|
export { default as WorkbookColorIcon } from './WorkbookColor.js';
|
|
195
198
|
export { default as WrongIcon } from './Wrong.js';
|
|
196
199
|
export { default as YoutubeIcon } from './Youtube.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.23.1",
|
|
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": "
|
|
41
|
+
"gitHead": "9bfa6d966850619c64b40d1fca42623fc68fda09"
|
|
42
42
|
}
|
package/svg/ai.svg
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.
|
|
4
|
-
<path d="
|
|
2
|
+
<path d="M3.22391 11.9375C3.22391 11.5044 2.8728 11.1533 2.43968 11.1533H2.35269C1.05334 11.1533 0 12.2066 0 13.506V14.7878C0 16.0872 1.05334 17.1405 2.35269 17.1405H2.43968C2.8728 17.1405 3.22391 16.7894 3.22391 16.3563V11.9375Z" fill="#8D94A0"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.8414 3.91194C13.8414 4.65637 13.3367 5.28294 12.6509 5.46824V5.98377H15.9562C18.0964 5.98377 19.8313 7.7187 19.8313 9.85885V17.7677C19.8313 19.9078 18.0964 21.6428 15.9562 21.6428H8.04737C5.90722 21.6428 4.1723 19.9078 4.1723 17.7677V9.85885C4.1723 7.7187 5.90723 5.98377 8.04737 5.98377H11.2692V5.44497C10.6235 5.23467 10.1569 4.6278 10.1569 3.91194C10.1569 3.02168 10.8786 2.29999 11.7689 2.29999H12.2294C13.1197 2.29999 13.8414 3.02168 13.8414 3.91194ZM14.522 12.2462C14.522 11.5782 14.1438 11.0367 13.6773 11.0367C13.2108 11.0367 12.8326 11.5781 12.8326 12.246C12.8326 12.914 13.2108 13.4555 13.6773 13.4555C14.1438 13.4556 14.522 12.9141 14.522 12.2462ZM11.2539 12.2481C11.2539 11.5811 10.8757 11.0403 10.4092 11.0402C9.94271 11.0401 9.56452 11.5807 9.56452 12.2477C9.56452 12.9147 9.94271 13.4555 10.4092 13.4556C10.8757 13.4557 11.2539 12.9151 11.2539 12.2481ZM10.3859 15.313C10.1609 15.0318 9.7506 14.9862 9.46938 15.2112C9.18816 15.4362 9.14257 15.8465 9.36754 16.1277C10.4771 17.5147 12.9885 18.0877 14.6539 16.1448C14.8883 15.8713 14.8566 15.4597 14.5832 15.2253C14.3097 14.9909 13.8981 15.0226 13.6637 15.296C12.6247 16.5082 11.0793 16.1798 10.3859 15.313Z" fill="#8D94A0"/>
|
|
4
|
+
<path d="M20.7761 11.9375C20.7761 11.5044 21.1272 11.1533 21.5603 11.1533H21.6473C22.9467 11.1533 24 12.2066 24 13.506V14.7878C24 16.0872 22.9467 17.1405 21.6473 17.1405H21.5603C21.1272 17.1405 20.7761 16.7894 20.7761 16.3563V11.9375Z" fill="#8D94A0"/>
|
|
5
5
|
</svg>
|
package/svg/ai_sad.svg
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
1
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<
|
|
2
|
+
<g clip-path="url(#clip0_14904_66)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.8414 3.91194C13.8414 4.65637 13.3367 5.28294 12.6509 5.46824V5.98377H15.9562C18.0964 5.98377 19.8313 7.7187 19.8313 9.85885V17.7677C19.8313 19.9078 18.0964 21.6428 15.9562 21.6428H8.04737C5.90722 21.6428 4.1723 19.9078 4.1723 17.7677V9.85885C4.1723 7.7187 5.90722 5.98377 8.04737 5.98377H11.2692V5.44497C10.6235 5.23467 10.1569 4.6278 10.1569 3.91194C10.1569 3.02168 10.8786 2.29999 11.7689 2.29999H12.2294C13.1197 2.29999 13.8414 3.02168 13.8414 3.91194ZM14.522 12.2462C14.522 11.5782 14.1438 11.0367 13.6773 11.0367C13.2108 11.0367 12.8326 11.5781 12.8326 12.246C12.8326 12.914 13.2108 13.4555 13.6773 13.4555C14.1438 13.4556 14.522 12.9141 14.522 12.2462ZM11.2539 12.2481C11.2539 11.5811 10.8757 11.0403 10.4092 11.0402C9.94271 11.0401 9.56452 11.5807 9.56452 12.2477C9.56452 12.9147 9.94271 13.4555 10.4092 13.4556C10.8757 13.4557 11.2539 12.9151 11.2539 12.2481ZM3.22391 11.9375C3.22391 11.5044 2.8728 11.1533 2.43968 11.1533H2.35269C1.05334 11.1533 0 12.2066 0 13.506V14.7878C0 16.0872 1.05334 17.1405 2.35269 17.1405H2.43968C2.8728 17.1405 3.22391 16.7894 3.22391 16.3563V11.9375ZM21.5603 11.1533C21.1272 11.1533 20.7761 11.5044 20.7761 11.9375V16.3563C20.7761 16.7894 21.1272 17.1405 21.5603 17.1405H21.6473C22.9467 17.1405 24 16.0872 24 14.7878V13.506C24 12.2066 22.9467 11.1533 21.6473 11.1533H21.5603ZM14.5661 17.2517C14.2849 17.4766 13.8745 17.431 13.6495 17.1498C12.9561 16.2831 11.4108 15.9546 10.3718 17.1668C10.1374 17.4403 9.72573 17.4719 9.4523 17.2376C9.17887 17.0032 9.1472 16.5915 9.38157 16.3181C11.047 14.3751 13.5583 14.9482 14.6679 16.3351C14.8929 16.6163 14.8473 17.0267 14.5661 17.2517Z" fill="#8D94A0"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="clip0_14904_66">
|
|
7
|
+
<rect width="24" height="24" fill="white"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
3
10
|
</svg>
|
package/svg/workbook.svg
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3 3.04629C3 2.1923 3.6923 1.5 4.5463 1.5H5.70602V22.375H4.5463C3.6923 22.375 3 21.6827 3 20.8287V3.04629Z" fill="#8D94A0"/>
|
|
3
|
+
<rect x="8.7522" y="4.91188" width="9.27777" height="2.31944" rx="1.15972" fill="#8D94A0"/>
|
|
4
|
+
<path opacity="0.6" fill-rule="evenodd" clip-rule="evenodd" d="M20.0093 22.375H5.70605V1.5H20.0093C20.8633 1.5 21.5556 2.1923 21.5556 3.0463V20.8287C21.5556 21.6827 20.8633 22.375 20.0093 22.375ZM9.91192 4.9119C9.27142 4.9119 8.7522 5.43112 8.7522 6.07162C8.7522 6.71211 9.27142 7.23134 9.91192 7.23134H16.8702C17.5107 7.23134 18.03 6.71211 18.03 6.07162C18.03 5.43112 17.5107 4.9119 16.8702 4.9119H9.91192Z" fill="#8D94A0"/>
|
|
5
|
+
</svg>
|