@teamturing/icons 1.16.0 → 1.17.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/Glasses.d.ts +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +14 -0
- package/esm/Glasses.js +17 -0
- package/esm/index.js +1 -0
- package/package.json +2 -2
- package/svg/glasses.svg +3 -0
package/dist/index.d.ts
CHANGED
|
@@ -75,6 +75,7 @@ export { default as FacebookColorIcon } from './FacebookColor';
|
|
|
75
75
|
export { default as FilterIcon } from './Filter';
|
|
76
76
|
export { default as FireIcon } from './Fire';
|
|
77
77
|
export { default as FrameIcon } from './Frame';
|
|
78
|
+
export { default as GlassesIcon } from './Glasses';
|
|
78
79
|
export { default as GraphIcon } from './Graph';
|
|
79
80
|
export { default as GunIcon } from './Gun';
|
|
80
81
|
export { default as GunColorIcon } from './GunColor';
|
package/dist/index.js
CHANGED
|
@@ -1200,6 +1200,19 @@ const SvgFrame = props => /*#__PURE__*/React__namespace.createElement("svg", _ex
|
|
|
1200
1200
|
clipRule: "evenodd"
|
|
1201
1201
|
}));
|
|
1202
1202
|
|
|
1203
|
+
const SvgGlasses = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1204
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1205
|
+
width: "1em",
|
|
1206
|
+
height: "1em",
|
|
1207
|
+
fill: "none",
|
|
1208
|
+
viewBox: "0 0 24 24"
|
|
1209
|
+
}, props), /*#__PURE__*/React__namespace.createElement("path", {
|
|
1210
|
+
fill: "currentColor",
|
|
1211
|
+
fillRule: "evenodd",
|
|
1212
|
+
d: "M6 15.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM6 18a5.5 5.5 0 0 0 5.419-6.447 3.168 3.168 0 0 1 1.162 0 5.5 5.5 0 1 0 1-2.327A5.553 5.553 0 0 0 12 9c-.547 0-1.083.077-1.58.225A5.5 5.5 0 1 0 6 18Zm12-2.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z",
|
|
1213
|
+
clipRule: "evenodd"
|
|
1214
|
+
}));
|
|
1215
|
+
|
|
1203
1216
|
const SvgGraph = props => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
1204
1217
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1205
1218
|
width: "1em",
|
|
@@ -3136,6 +3149,7 @@ exports.FacebookIcon = SvgFacebook;
|
|
|
3136
3149
|
exports.FilterIcon = SvgFilter;
|
|
3137
3150
|
exports.FireIcon = SvgFire;
|
|
3138
3151
|
exports.FrameIcon = SvgFrame;
|
|
3152
|
+
exports.GlassesIcon = SvgGlasses;
|
|
3139
3153
|
exports.GraphIcon = SvgGraph;
|
|
3140
3154
|
exports.GunColorIcon = SvgGunColor;
|
|
3141
3155
|
exports.GunIcon = SvgGun;
|
package/esm/Glasses.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { extends as _extends } from './_virtual/_rollupPluginBabelHelpers.js';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
const SvgGlasses = 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 15.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM6 18a5.5 5.5 0 0 0 5.419-6.447 3.168 3.168 0 0 1 1.162 0 5.5 5.5 0 1 0 1-2.327A5.553 5.553 0 0 0 12 9c-.547 0-1.083.077-1.58.225A5.5 5.5 0 1 0 6 18Zm12-2.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z",
|
|
14
|
+
clipRule: "evenodd"
|
|
15
|
+
}));
|
|
16
|
+
|
|
17
|
+
export { SvgGlasses as default };
|
package/esm/index.js
CHANGED
|
@@ -75,6 +75,7 @@ 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
77
|
export { default as FrameIcon } from './Frame.js';
|
|
78
|
+
export { default as GlassesIcon } from './Glasses.js';
|
|
78
79
|
export { default as GraphIcon } from './Graph.js';
|
|
79
80
|
export { default as GunIcon } from './Gun.js';
|
|
80
81
|
export { default as GunColorIcon } from './GunColor.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.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": "26a6e3cde5a4a1962c492c984d31f98ac3a757c9"
|
|
37
37
|
}
|
package/svg/glasses.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 15.5C7.65685 15.5 9 14.1569 9 12.5C9 10.8431 7.65685 9.5 6 9.5C4.34315 9.5 3 10.8431 3 12.5C3 14.1569 4.34315 15.5 6 15.5ZM6 18C9.03757 18 11.5 15.5376 11.5 12.5C11.5 12.1769 11.4721 11.8604 11.4187 11.5526C11.5975 11.5192 11.7922 11.5 11.9999 11.5C12.2078 11.5 12.4025 11.5192 12.5813 11.5526C12.5279 11.8604 12.5 12.1769 12.5 12.5C12.5 15.5376 14.9624 18 18 18C21.0376 18 23.5 15.5376 23.5 12.5C23.5 9.46243 21.0376 7 18 7C16.1892 7 14.5828 7.87509 13.5806 9.22544C13.0829 9.07715 12.5473 9 11.9999 9C11.4527 9 10.917 9.07714 10.4194 9.22542C9.41719 7.87508 7.81079 7 6 7C2.96243 7 0.5 9.46243 0.5 12.5C0.5 15.5376 2.96243 18 6 18ZM18 15.5C19.6569 15.5 21 14.1569 21 12.5C21 10.8431 19.6569 9.5 18 9.5C16.3431 9.5 15 10.8431 15 12.5C15 14.1569 16.3431 15.5 18 15.5Z" fill="#8D94A0"/>
|
|
3
|
+
</svg>
|