@teamturing/icons 1.12.0 → 1.13.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/WorkbookColor.d.ts +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +26 -0
- package/esm/WorkbookColor.js +29 -0
- package/esm/index.js +1 -0
- package/package.json +2 -2
- package/svg/workbook_color.svg +5 -0
package/dist/index.d.ts
CHANGED
|
@@ -176,5 +176,6 @@ export { default as VideoColorIcon } from './VideoColor';
|
|
|
176
176
|
export { default as VoteColorIcon } from './VoteColor';
|
|
177
177
|
export { default as WarningIcon } from './Warning';
|
|
178
178
|
export { default as WifiIcon } from './Wifi';
|
|
179
|
+
export { default as WorkbookColorIcon } from './WorkbookColor';
|
|
179
180
|
export { default as WrongIcon } from './Wrong';
|
|
180
181
|
export { default as YoutubeIcon } from './Youtube';
|
package/dist/index.js
CHANGED
|
@@ -2914,6 +2914,31 @@ const SvgWifi = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
|
|
|
2914
2914
|
clipRule: "evenodd"
|
|
2915
2915
|
}));
|
|
2916
2916
|
|
|
2917
|
+
const SvgWorkbookColor = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2918
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2919
|
+
width: "1em",
|
|
2920
|
+
height: "1em",
|
|
2921
|
+
fill: "none",
|
|
2922
|
+
viewBox: "0 0 32 32"
|
|
2923
|
+
}, props), /*#__PURE__*/React__namespace.createElement("rect", {
|
|
2924
|
+
width: 24.741,
|
|
2925
|
+
height: 27.833,
|
|
2926
|
+
x: 4,
|
|
2927
|
+
y: 2,
|
|
2928
|
+
fill: "#D9CDF9",
|
|
2929
|
+
rx: 1.546
|
|
2930
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2931
|
+
fill: "#9C7EEF",
|
|
2932
|
+
d: "M4 3.546C4 2.692 4.692 2 5.546 2h2.062v27.833H5.546A1.546 1.546 0 0 1 4 28.287V3.547Z"
|
|
2933
|
+
}), /*#__PURE__*/React__namespace.createElement("rect", {
|
|
2934
|
+
width: 12.37,
|
|
2935
|
+
height: 3.093,
|
|
2936
|
+
x: 11.67,
|
|
2937
|
+
y: 6.549,
|
|
2938
|
+
fill: "#9C7EEF",
|
|
2939
|
+
rx: 1.546
|
|
2940
|
+
}));
|
|
2941
|
+
|
|
2917
2942
|
const SvgWrong = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
2918
2943
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2919
2944
|
width: "1em",
|
|
@@ -3121,5 +3146,6 @@ exports.VideoIcon = SvgVideo;
|
|
|
3121
3146
|
exports.VoteColorIcon = SvgVoteColor;
|
|
3122
3147
|
exports.WarningIcon = SvgWarning;
|
|
3123
3148
|
exports.WifiIcon = SvgWifi;
|
|
3149
|
+
exports.WorkbookColorIcon = SvgWorkbookColor;
|
|
3124
3150
|
exports.WrongIcon = SvgWrong;
|
|
3125
3151
|
exports.YoutubeIcon = SvgYoutube;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgWorkbookColor = 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("rect", {
|
|
11
|
+
width: 24.741,
|
|
12
|
+
height: 27.833,
|
|
13
|
+
x: 4,
|
|
14
|
+
y: 2,
|
|
15
|
+
fill: "#D9CDF9",
|
|
16
|
+
rx: 1.546
|
|
17
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fill: "#9C7EEF",
|
|
19
|
+
d: "M4 3.546C4 2.692 4.692 2 5.546 2h2.062v27.833H5.546A1.546 1.546 0 0 1 4 28.287V3.547Z"
|
|
20
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
21
|
+
width: 12.37,
|
|
22
|
+
height: 3.093,
|
|
23
|
+
x: 11.67,
|
|
24
|
+
y: 6.549,
|
|
25
|
+
fill: "#9C7EEF",
|
|
26
|
+
rx: 1.546
|
|
27
|
+
}));
|
|
28
|
+
|
|
29
|
+
export { SvgWorkbookColor as default };
|
package/esm/index.js
CHANGED
|
@@ -176,5 +176,6 @@ export { default as VideoColorIcon } from './VideoColor.js';
|
|
|
176
176
|
export { default as VoteColorIcon } from './VoteColor.js';
|
|
177
177
|
export { default as WarningIcon } from './Warning.js';
|
|
178
178
|
export { default as WifiIcon } from './Wifi.js';
|
|
179
|
+
export { default as WorkbookColorIcon } from './WorkbookColor.js';
|
|
179
180
|
export { default as WrongIcon } from './Wrong.js';
|
|
180
181
|
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.13.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",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"react": "^18.2.0"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "50080ec006de520ed0db0db8d138fd7a681c5f69"
|
|
37
37
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="4" y="2" width="24.7407" height="27.8333" rx="1.5463" fill="#D9CDF9"/>
|
|
3
|
+
<path d="M4 3.5463C4 2.6923 4.6923 2 5.5463 2H7.60802V29.8333H5.54629C4.6923 29.8333 4 29.141 4 28.287V3.5463Z" fill="#9C7EEF"/>
|
|
4
|
+
<rect x="11.6696" y="6.54916" width="12.3704" height="3.09259" rx="1.5463" fill="#9C7EEF"/>
|
|
5
|
+
</svg>
|