@teamturing/icons 1.19.0 → 1.20.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.
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from 'react';
2
+ declare const SvgFolder: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgFolder;
package/dist/index.d.ts CHANGED
@@ -74,6 +74,7 @@ export { default as FacebookIcon } from './Facebook';
74
74
  export { default as FacebookColorIcon } from './FacebookColor';
75
75
  export { default as FilterIcon } from './Filter';
76
76
  export { default as FireIcon } from './Fire';
77
+ export { default as FolderIcon } from './Folder';
77
78
  export { default as FrameIcon } from './Frame';
78
79
  export { default as GlassesIcon } from './Glasses';
79
80
  export { default as GraphIcon } from './Graph';
package/dist/index.js CHANGED
@@ -1187,6 +1187,19 @@ const SvgFire = props => /*#__PURE__*/React__namespace.createElement("svg", _ext
1187
1187
  d: "M10.373 2.847c-.021.287-.22 2.173-1.773 3.754-.144.145-.3.279-.465.4-.227.169-.616.462-1.021.787-.537.431-2.966 2.7-3.104 5.86 0 0-.586 7.212 7.136 8.276 0 0 2.5.531 5.223-1.214.061-.04.123-.078.187-.115.438-.257 2.76-1.767 3.368-5.192 0 0 .433-2.773-.768-4.942-.034-.06-.072-.117-.104-.177-.144-.273-.65-1.176-1.366-1.86a.699.699 0 0 0-.377-.191.565.565 0 0 0-.569.253c-.127.19-.761 1.139-1.045 1.49 0 0-.159.194-.12-.08 0 0 .515-2.576-1.264-5.153 0 0-1.107-1.719-2.807-2.578 0 0-.434-.273-.79-.117 0 0-.248.105-.325.66a1.583 1.583 0 0 0-.016.14Z"
1188
1188
  }));
1189
1189
 
1190
+ const SvgFolder = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
1191
+ xmlns: "http://www.w3.org/2000/svg",
1192
+ width: "1em",
1193
+ height: "1em",
1194
+ fill: "none",
1195
+ viewBox: "0 0 24 24"
1196
+ }, props), /*#__PURE__*/React__namespace.createElement("path", {
1197
+ fill: "currentColor",
1198
+ fillRule: "evenodd",
1199
+ d: "M10.061 3.181a2.108 2.108 0 0 0-1.489-.617H4.106A2.106 2.106 0 0 0 2 4.67v.977h10.527l-2.466-2.466Zm9.834 3.466H2v12.684c0 1.163.943 2.105 2.106 2.105h15.789A2.103 2.103 0 0 0 22 19.331V8.752a2.104 2.104 0 0 0-2.105-2.105Z",
1200
+ clipRule: "evenodd"
1201
+ }));
1202
+
1190
1203
  const SvgFrame = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
1191
1204
  xmlns: "http://www.w3.org/2000/svg",
1192
1205
  width: "1em",
@@ -3220,6 +3233,7 @@ exports.FacebookColorIcon = SvgFacebookColor;
3220
3233
  exports.FacebookIcon = SvgFacebook;
3221
3234
  exports.FilterIcon = SvgFilter;
3222
3235
  exports.FireIcon = SvgFire;
3236
+ exports.FolderIcon = SvgFolder;
3223
3237
  exports.FrameIcon = SvgFrame;
3224
3238
  exports.GlassesIcon = SvgGlasses;
3225
3239
  exports.GraphIcon = SvgGraph;
package/esm/Folder.js ADDED
@@ -0,0 +1,17 @@
1
+ import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
2
+ import * as React from 'react';
3
+
4
+ const SvgFolder = 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: "M10.061 3.181a2.108 2.108 0 0 0-1.489-.617H4.106A2.106 2.106 0 0 0 2 4.67v.977h10.527l-2.466-2.466Zm9.834 3.466H2v12.684c0 1.163.943 2.105 2.106 2.105h15.789A2.103 2.103 0 0 0 22 19.331V8.752a2.104 2.104 0 0 0-2.105-2.105Z",
14
+ clipRule: "evenodd"
15
+ }));
16
+
17
+ export { SvgFolder as default };
package/esm/index.js CHANGED
@@ -74,6 +74,7 @@ export { default as FacebookIcon } from './Facebook.js';
74
74
  export { default as FacebookColorIcon } from './FacebookColor.js';
75
75
  export { default as FilterIcon } from './Filter.js';
76
76
  export { default as FireIcon } from './Fire.js';
77
+ export { default as FolderIcon } from './Folder.js';
77
78
  export { default as FrameIcon } from './Frame.js';
78
79
  export { default as GlassesIcon } from './Glasses.js';
79
80
  export { default as GraphIcon } from './Graph.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/icons",
3
- "version": "1.19.0",
3
+ "version": "1.20.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": "4b25cf787c19341a301fa24841c94903ade99b03"
41
+ "gitHead": "60a452ea4bddbf4b7256820dd694b0479fbbad52"
42
42
  }
package/svg/folder.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="M10.061 3.181C9.66599 2.78621 9.13047 2.5643 8.572 2.564H4.106C3.54745 2.564 3.01178 2.78588 2.61683 3.18083C2.22188 3.57578 2 4.11145 2 4.67V5.647H12.527L10.061 3.181ZM19.895 6.647H2V19.331C2 20.494 2.943 21.436 4.106 21.436H19.895C20.1715 21.4361 20.4453 21.3818 20.7007 21.276C20.9562 21.1703 21.1883 21.0152 21.3838 20.8197C21.5792 20.6243 21.7343 20.3921 21.84 20.1367C21.9458 19.8813 22.0001 19.6075 22 19.331V8.752C22.0001 8.47553 21.9458 8.20174 21.84 7.94629C21.7343 7.69084 21.5792 7.45874 21.3838 7.26324C21.1883 7.06775 20.9562 6.9127 20.7007 6.80696C20.4453 6.70122 20.1715 6.64686 19.895 6.647Z" fill="#8D94A0"/>
3
+ </svg>
@@ -1,3 +0,0 @@
1
- import type { SVGProps } from 'react';
2
- declare const SvgChatBubbleQuestionAnimation: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
- export default SvgChatBubbleQuestionAnimation;
@@ -1,3 +0,0 @@
1
- import type { SVGProps } from 'react';
2
- declare const SvgStarAnimation: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
- export default SvgStarAnimation;