@teamturing/icons 1.52.0 → 1.53.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/Flag.d.ts +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +12 -0
- package/esm/Flag.js +15 -0
- package/esm/index.js +1 -0
- package/package.json +2 -2
- package/svg/flag.svg +3 -0
package/dist/Flag.d.ts
ADDED
package/dist/index.d.ts
CHANGED
|
@@ -93,6 +93,7 @@ export { default as FilterIcon } from './Filter';
|
|
|
93
93
|
export { default as FindIcon } from './Find';
|
|
94
94
|
export { default as FireIcon } from './Fire';
|
|
95
95
|
export { default as FireColorIcon } from './FireColor';
|
|
96
|
+
export { default as FlagIcon } from './Flag';
|
|
96
97
|
export { default as FolderIcon } from './Folder';
|
|
97
98
|
export { default as FrameIcon } from './Frame';
|
|
98
99
|
export { default as GlassesIcon } from './Glasses';
|
package/dist/index.js
CHANGED
|
@@ -1491,6 +1491,17 @@ const SvgFireColor = props => /*#__PURE__*/React__namespace.createElement("svg",
|
|
|
1491
1491
|
clipRule: "evenodd"
|
|
1492
1492
|
}));
|
|
1493
1493
|
|
|
1494
|
+
const SvgFlag = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1495
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1496
|
+
width: "1em",
|
|
1497
|
+
height: "1em",
|
|
1498
|
+
fill: "none",
|
|
1499
|
+
viewBox: "0 0 24 24"
|
|
1500
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
1501
|
+
fill: "currentColor",
|
|
1502
|
+
d: "M5.611.747c.717 0 1.237.583 1.239 1.3v.621l.468.044c2.639.243 4.067.727 6.36 2.174s3.654 2.624 6.038 3.196l1.585.324c.459.087.65.608.096 1.042 0 0-1.111 1.151-2.596 1.84-1.485.687-2.795 1.184-5.123 1.01-2.328-.172-3.58-.022-4.957.592l-1.854.834.014 8.243c.001.71-.55 1.285-1.26 1.286-.713 0-1.319-.578-1.32-1.291L4.27 2.027C4.269 1.32 4.904.747 5.61.747Z"
|
|
1503
|
+
}));
|
|
1504
|
+
|
|
1494
1505
|
const SvgFolder = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1495
1506
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1496
1507
|
width: "1em",
|
|
@@ -3895,6 +3906,7 @@ exports.FilterIcon = SvgFilter;
|
|
|
3895
3906
|
exports.FindIcon = SvgFind;
|
|
3896
3907
|
exports.FireColorIcon = SvgFireColor;
|
|
3897
3908
|
exports.FireIcon = SvgFire;
|
|
3909
|
+
exports.FlagIcon = SvgFlag;
|
|
3898
3910
|
exports.FolderIcon = SvgFolder;
|
|
3899
3911
|
exports.FrameIcon = SvgFrame;
|
|
3900
3912
|
exports.GlassesIcon = SvgGlasses;
|
package/esm/Flag.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgFlag = 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: "M5.611.747c.717 0 1.237.583 1.239 1.3v.621l.468.044c2.639.243 4.067.727 6.36 2.174s3.654 2.624 6.038 3.196l1.585.324c.459.087.65.608.096 1.042 0 0-1.111 1.151-2.596 1.84-1.485.687-2.795 1.184-5.123 1.01-2.328-.172-3.58-.022-4.957.592l-1.854.834.014 8.243c.001.71-.55 1.285-1.26 1.286-.713 0-1.319-.578-1.32-1.291L4.27 2.027C4.269 1.32 4.904.747 5.61.747Z"
|
|
13
|
+
}));
|
|
14
|
+
|
|
15
|
+
export { SvgFlag as default };
|
package/esm/index.js
CHANGED
|
@@ -93,6 +93,7 @@ export { default as FilterIcon } from './Filter.js';
|
|
|
93
93
|
export { default as FindIcon } from './Find.js';
|
|
94
94
|
export { default as FireIcon } from './Fire.js';
|
|
95
95
|
export { default as FireColorIcon } from './FireColor.js';
|
|
96
|
+
export { default as FlagIcon } from './Flag.js';
|
|
96
97
|
export { default as FolderIcon } from './Folder.js';
|
|
97
98
|
export { default as FrameIcon } from './Frame.js';
|
|
98
99
|
export { default as GlassesIcon } from './Glasses.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.53.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",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"react": "^18.2.0"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "d42c94799653f9cf9abd165dd9f20d90c8ca1e4d"
|
|
44
44
|
}
|
package/svg/flag.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 d="M5.61133 0.74707C6.32808 0.746982 6.84844 1.33012 6.84961 2.04688V2.66797L7.31836 2.71191C9.95672 2.95544 11.3848 3.4388 13.6777 4.88574C15.9708 6.33275 17.3319 7.50958 19.7158 8.08203L21.3008 8.40625C21.7599 8.4931 21.951 9.01405 21.3965 9.44824C21.3965 9.44824 20.2858 10.5994 18.8008 11.2871C17.3158 11.9748 16.0058 12.4721 13.6777 12.2988C11.3499 12.1256 10.0988 12.2761 8.7207 12.8896L6.86719 13.7236L6.88086 21.9668C6.88197 22.6763 6.33057 23.2521 5.62109 23.2529C4.90787 23.2536 4.30198 22.6751 4.30078 21.9619L4.26953 2.02734C4.26859 1.31976 4.90371 0.747217 5.61133 0.74707Z" fill="#8D94A0"/>
|
|
3
|
+
</svg>
|