@bigbinary/neeto-icons 1.19.2 → 1.20.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/app-icons.d.ts +1 -0
- package/dist/app-icons/NeetoTower.js +48 -0
- package/dist/app-icons/NeetoTower.js.map +1 -0
- package/dist/app-icons/index.js +2 -1
- package/dist/app-icons/index.js.map +1 -1
- package/dist/cjs/app-icons/NeetoTower.js +58 -0
- package/dist/cjs/app-icons/NeetoTower.js.map +1 -0
- package/dist/cjs/app-icons/index.js +8 -0
- package/dist/cjs/app-icons/index.js.map +1 -1
- package/dist/cjs/icons/CustomSize.js +93 -0
- package/dist/cjs/icons/CustomSize.js.map +1 -0
- package/dist/cjs/icons/EntireScreen.js +55 -0
- package/dist/cjs/icons/EntireScreen.js.map +1 -0
- package/dist/cjs/icons/MicOff.js +68 -0
- package/dist/cjs/icons/MicOff.js.map +1 -0
- package/dist/cjs/icons/SpecificWindow.js +68 -0
- package/dist/cjs/icons/SpecificWindow.js.map +1 -0
- package/dist/cjs/icons/VideoOff.js +56 -0
- package/dist/cjs/icons/VideoOff.js.map +1 -0
- package/dist/cjs/icons/index.js +40 -0
- package/dist/cjs/icons/index.js.map +1 -1
- package/dist/cjs/logos/NeetoTower.js +44 -0
- package/dist/cjs/logos/NeetoTower.js.map +1 -0
- package/dist/cjs/logos/index.js +8 -0
- package/dist/cjs/logos/index.js.map +1 -1
- package/dist/cjs/typeface-logos/NeetoTower.js +79 -0
- package/dist/cjs/typeface-logos/NeetoTower.js.map +1 -0
- package/dist/cjs/typeface-logos/index.js +8 -0
- package/dist/cjs/typeface-logos/index.js.map +1 -1
- package/dist/icons/CustomSize.js +83 -0
- package/dist/icons/CustomSize.js.map +1 -0
- package/dist/icons/EntireScreen.js +45 -0
- package/dist/icons/EntireScreen.js.map +1 -0
- package/dist/icons/MicOff.js +58 -0
- package/dist/icons/MicOff.js.map +1 -0
- package/dist/icons/SpecificWindow.js +58 -0
- package/dist/icons/SpecificWindow.js.map +1 -0
- package/dist/icons/VideoOff.js +46 -0
- package/dist/icons/VideoOff.js.map +1 -0
- package/dist/icons/index.js +6 -1
- package/dist/icons/index.js.map +1 -1
- package/dist/logos/NeetoTower.js +34 -0
- package/dist/logos/NeetoTower.js.map +1 -0
- package/dist/logos/index.js +2 -1
- package/dist/logos/index.js.map +1 -1
- package/dist/typeface-logos/NeetoTower.js +69 -0
- package/dist/typeface-logos/NeetoTower.js.map +1 -0
- package/dist/typeface-logos/index.js +2 -1
- package/dist/typeface-logos/index.js.map +1 -1
- package/icons.d.ts +5 -0
- package/logos.d.ts +1 -0
- package/package.json +1 -1
- package/typeface-logos.d.ts +1 -0
package/app-icons.d.ts
CHANGED
|
@@ -27,4 +27,5 @@ export const NeetoRunner: React.FC<IconProps>;
|
|
|
27
27
|
export const NeetoSeo: React.FC<IconProps>;
|
|
28
28
|
export const NeetoSite: React.FC<IconProps>;
|
|
29
29
|
export const NeetoTestify: React.FC<IconProps>;
|
|
30
|
+
export const NeetoTower: React.FC<IconProps>;
|
|
30
31
|
export const NeetoWireframe: React.FC<IconProps>;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
var _excluded = ["size"];
|
|
2
|
+
|
|
3
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4
|
+
|
|
5
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
6
|
+
|
|
7
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
8
|
+
|
|
9
|
+
import React from "react";
|
|
10
|
+
|
|
11
|
+
var NeetoTower = function NeetoTower(_ref) {
|
|
12
|
+
var _ref$size = _ref.size,
|
|
13
|
+
size = _ref$size === void 0 ? 36 : _ref$size,
|
|
14
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
15
|
+
|
|
16
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
17
|
+
width: size,
|
|
18
|
+
height: size,
|
|
19
|
+
viewBox: "0 0 800 800",
|
|
20
|
+
fill: "none"
|
|
21
|
+
}, props), /*#__PURE__*/React.createElement("rect", {
|
|
22
|
+
width: 800,
|
|
23
|
+
height: 800,
|
|
24
|
+
rx: 160,
|
|
25
|
+
fill: "black"
|
|
26
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
27
|
+
clipPath: "url(#NeetoTower_js__clip0_1987_284)"
|
|
28
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
d: "M557.734 225H421.212V431.122L557.734 225Z",
|
|
30
|
+
fill: "#0DA84C"
|
|
31
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
32
|
+
d: "M241.859 225H421.212L421.212 318.692H241.859V225Z",
|
|
33
|
+
fill: "#5BCC5A"
|
|
34
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
d: "M327.52 573L327.52 225.002L421.212 225V431.122L327.52 573Z",
|
|
36
|
+
fill: "#75DC66"
|
|
37
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
38
|
+
id: "NeetoTower_js__clip0_1987_284"
|
|
39
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
40
|
+
width: 348.3,
|
|
41
|
+
height: 348.3,
|
|
42
|
+
fill: "white",
|
|
43
|
+
transform: "translate(225.352 225.35)"
|
|
44
|
+
}))));
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
export default NeetoTower;
|
|
48
|
+
//# sourceMappingURL=NeetoTower.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../generate/app-icons/NeetoTower.js"],"names":["React","NeetoTower","size","props"],"mappings":";;;;;;;;AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AACA,IAAMC,UAAU,GAAG,SAAbA,UAAa,OAA6B;AAAA,uBAA1BC,IAA0B;AAAA,MAA1BA,IAA0B,0BAAnB,EAAmB;AAAA,MAAZC,KAAY;;AAC9C,sBACE;AACE,IAAA,KAAK,EAAED,IADT;AAEE,IAAA,MAAM,EAAEA,IAFV;AAGE,IAAA,OAAO,EAAC,aAHV;AAIE,IAAA,IAAI,EAAC;AAJP,KAKMC,KALN,gBAOE;AAAM,IAAA,KAAK,EAAE,GAAb;AAAkB,IAAA,MAAM,EAAE,GAA1B;AAA+B,IAAA,EAAE,EAAE,GAAnC;AAAwC,IAAA,IAAI,EAAC;AAA7C,IAPF,eAQE;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AAAM,IAAA,CAAC,EAAC,2CAAR;AAAoD,IAAA,IAAI,EAAC;AAAzD,IADF,eAEE;AACE,IAAA,CAAC,EAAC,mDADJ;AAEE,IAAA,IAAI,EAAC;AAFP,IAFF,eAME;AACE,IAAA,CAAC,EAAC,4DADJ;AAEE,IAAA,IAAI,EAAC;AAFP,IANF,CARF,eAmBE,+CACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AACE,IAAA,KAAK,EAAE,KADT;AAEE,IAAA,MAAM,EAAE,KAFV;AAGE,IAAA,IAAI,EAAC,OAHP;AAIE,IAAA,SAAS,EAAC;AAJZ,IADF,CADF,CAnBF,CADF;AAgCD,CAjCD;;AAkCA,eAAeF,UAAf","sourcesContent":["import React from \"react\";\nconst NeetoTower = ({ size = 36, ...props }) => {\n return (\n <svg\n width={size}\n height={size}\n viewBox=\"0 0 800 800\"\n fill=\"none\"\n {...props}\n >\n <rect width={800} height={800} rx={160} fill=\"black\" />\n <g clipPath=\"url(#NeetoTower_js__clip0_1987_284)\">\n <path d=\"M557.734 225H421.212V431.122L557.734 225Z\" fill=\"#0DA84C\" />\n <path\n d=\"M241.859 225H421.212L421.212 318.692H241.859V225Z\"\n fill=\"#5BCC5A\"\n />\n <path\n d=\"M327.52 573L327.52 225.002L421.212 225V431.122L327.52 573Z\"\n fill=\"#75DC66\"\n />\n </g>\n <defs>\n <clipPath id=\"NeetoTower_js__clip0_1987_284\">\n <rect\n width={348.3}\n height={348.3}\n fill=\"white\"\n transform=\"translate(225.352 225.35)\"\n />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default NeetoTower;\n"],"file":"NeetoTower.js"}
|
package/dist/app-icons/index.js
CHANGED
|
@@ -23,6 +23,7 @@ import NeetoRunner from "./NeetoRunner";
|
|
|
23
23
|
import NeetoSeo from "./NeetoSeo";
|
|
24
24
|
import NeetoSite from "./NeetoSite";
|
|
25
25
|
import NeetoTestify from "./NeetoTestify";
|
|
26
|
+
import NeetoTower from "./NeetoTower";
|
|
26
27
|
import NeetoWireframe from "./NeetoWireframe";
|
|
27
|
-
export { Neeto, NeetoCal, NeetoChangelog, NeetoChat, NeetoCi, NeetoCode, NeetoCourse, NeetoCrm, NeetoDeploy, NeetoDesk, NeetoForm, NeetoGit, NeetoInvisible, NeetoInvoice, NeetoKb, NeetoPlanner, NeetoPlaydash, NeetoPublish, NeetoQuiz, NeetoRecord, NeetoReplay, NeetoRunner, NeetoSeo, NeetoSite, NeetoTestify, NeetoWireframe };
|
|
28
|
+
export { Neeto, NeetoCal, NeetoChangelog, NeetoChat, NeetoCi, NeetoCode, NeetoCourse, NeetoCrm, NeetoDeploy, NeetoDesk, NeetoForm, NeetoGit, NeetoInvisible, NeetoInvoice, NeetoKb, NeetoPlanner, NeetoPlaydash, NeetoPublish, NeetoQuiz, NeetoRecord, NeetoReplay, NeetoRunner, NeetoSeo, NeetoSite, NeetoTestify, NeetoTower, NeetoWireframe };
|
|
28
29
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../generate/app-icons/index.js"],"names":["Neeto","NeetoCal","NeetoChangelog","NeetoChat","NeetoCi","NeetoCode","NeetoCourse","NeetoCrm","NeetoDeploy","NeetoDesk","NeetoForm","NeetoGit","NeetoInvisible","NeetoInvoice","NeetoKb","NeetoPlanner","NeetoPlaydash","NeetoPublish","NeetoQuiz","NeetoRecord","NeetoReplay","NeetoRunner","NeetoSeo","NeetoSite","NeetoTestify","NeetoWireframe"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,SAAlB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,cAAP,MAA2B,kBAA3B;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,OAAP,MAAoB,WAApB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,WAAP,MAAwB,eAAxB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,WAAP,MAAwB,eAAxB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,cAAP,MAA2B,kBAA3B;AACA,OAAOC,YAAP,MAAyB,gBAAzB;AACA,OAAOC,OAAP,MAAoB,WAApB;AACA,OAAOC,YAAP,MAAyB,gBAAzB;AACA,OAAOC,aAAP,MAA0B,iBAA1B;AACA,OAAOC,YAAP,MAAyB,gBAAzB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,WAAP,MAAwB,eAAxB;AACA,OAAOC,WAAP,MAAwB,eAAxB;AACA,OAAOC,WAAP,MAAwB,eAAxB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,YAAP,MAAyB,gBAAzB;AACA,OAAOC,cAAP,MAA2B,kBAA3B;AACA,
|
|
1
|
+
{"version":3,"sources":["../../generate/app-icons/index.js"],"names":["Neeto","NeetoCal","NeetoChangelog","NeetoChat","NeetoCi","NeetoCode","NeetoCourse","NeetoCrm","NeetoDeploy","NeetoDesk","NeetoForm","NeetoGit","NeetoInvisible","NeetoInvoice","NeetoKb","NeetoPlanner","NeetoPlaydash","NeetoPublish","NeetoQuiz","NeetoRecord","NeetoReplay","NeetoRunner","NeetoSeo","NeetoSite","NeetoTestify","NeetoTower","NeetoWireframe"],"mappings":"AAAA,OAAOA,KAAP,MAAkB,SAAlB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,cAAP,MAA2B,kBAA3B;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,OAAP,MAAoB,WAApB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,WAAP,MAAwB,eAAxB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,WAAP,MAAwB,eAAxB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,cAAP,MAA2B,kBAA3B;AACA,OAAOC,YAAP,MAAyB,gBAAzB;AACA,OAAOC,OAAP,MAAoB,WAApB;AACA,OAAOC,YAAP,MAAyB,gBAAzB;AACA,OAAOC,aAAP,MAA0B,iBAA1B;AACA,OAAOC,YAAP,MAAyB,gBAAzB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,WAAP,MAAwB,eAAxB;AACA,OAAOC,WAAP,MAAwB,eAAxB;AACA,OAAOC,WAAP,MAAwB,eAAxB;AACA,OAAOC,QAAP,MAAqB,YAArB;AACA,OAAOC,SAAP,MAAsB,aAAtB;AACA,OAAOC,YAAP,MAAyB,gBAAzB;AACA,OAAOC,UAAP,MAAuB,cAAvB;AACA,OAAOC,cAAP,MAA2B,kBAA3B;AACA,SACC1B,KADD,EAECC,QAFD,EAGCC,cAHD,EAICC,SAJD,EAKCC,OALD,EAMCC,SAND,EAOCC,WAPD,EAQCC,QARD,EASCC,WATD,EAUCC,SAVD,EAWCC,SAXD,EAYCC,QAZD,EAaCC,cAbD,EAcCC,YAdD,EAeCC,OAfD,EAgBCC,YAhBD,EAiBCC,aAjBD,EAkBCC,YAlBD,EAmBCC,SAnBD,EAoBCC,WApBD,EAqBCC,WArBD,EAsBCC,WAtBD,EAuBCC,QAvBD,EAwBCC,SAxBD,EAyBCC,YAzBD,EA0BCC,UA1BD,EA2BCC,cA3BD","sourcesContent":["import Neeto from \"./Neeto\";\r\nimport NeetoCal from \"./NeetoCal\";\r\nimport NeetoChangelog from \"./NeetoChangelog\";\r\nimport NeetoChat from \"./NeetoChat\";\r\nimport NeetoCi from \"./NeetoCi\";\r\nimport NeetoCode from \"./NeetoCode\";\r\nimport NeetoCourse from \"./NeetoCourse\";\r\nimport NeetoCrm from \"./NeetoCrm\";\r\nimport NeetoDeploy from \"./NeetoDeploy\";\r\nimport NeetoDesk from \"./NeetoDesk\";\r\nimport NeetoForm from \"./NeetoForm\";\r\nimport NeetoGit from \"./NeetoGit\";\r\nimport NeetoInvisible from \"./NeetoInvisible\";\r\nimport NeetoInvoice from \"./NeetoInvoice\";\r\nimport NeetoKb from \"./NeetoKb\";\r\nimport NeetoPlanner from \"./NeetoPlanner\";\r\nimport NeetoPlaydash from \"./NeetoPlaydash\";\r\nimport NeetoPublish from \"./NeetoPublish\";\r\nimport NeetoQuiz from \"./NeetoQuiz\";\r\nimport NeetoRecord from \"./NeetoRecord\";\r\nimport NeetoReplay from \"./NeetoReplay\";\r\nimport NeetoRunner from \"./NeetoRunner\";\r\nimport NeetoSeo from \"./NeetoSeo\";\r\nimport NeetoSite from \"./NeetoSite\";\r\nimport NeetoTestify from \"./NeetoTestify\";\r\nimport NeetoTower from \"./NeetoTower\";\r\nimport NeetoWireframe from \"./NeetoWireframe\";\r\nexport { \r\n\tNeeto,\r\n\tNeetoCal,\r\n\tNeetoChangelog,\r\n\tNeetoChat,\r\n\tNeetoCi,\r\n\tNeetoCode,\r\n\tNeetoCourse,\r\n\tNeetoCrm,\r\n\tNeetoDeploy,\r\n\tNeetoDesk,\r\n\tNeetoForm,\r\n\tNeetoGit,\r\n\tNeetoInvisible,\r\n\tNeetoInvoice,\r\n\tNeetoKb,\r\n\tNeetoPlanner,\r\n\tNeetoPlaydash,\r\n\tNeetoPublish,\r\n\tNeetoQuiz,\r\n\tNeetoRecord,\r\n\tNeetoReplay,\r\n\tNeetoRunner,\r\n\tNeetoSeo,\r\n\tNeetoSite,\r\n\tNeetoTestify,\r\n\tNeetoTower,\r\n\tNeetoWireframe\r\n};"],"file":"index.js"}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _excluded = ["size"];
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
|
|
14
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
15
|
+
|
|
16
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
17
|
+
|
|
18
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
19
|
+
|
|
20
|
+
var NeetoTower = function NeetoTower(_ref) {
|
|
21
|
+
var _ref$size = _ref.size,
|
|
22
|
+
size = _ref$size === void 0 ? 36 : _ref$size,
|
|
23
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
24
|
+
|
|
25
|
+
return /*#__PURE__*/_react.default.createElement("svg", _extends({
|
|
26
|
+
width: size,
|
|
27
|
+
height: size,
|
|
28
|
+
viewBox: "0 0 800 800",
|
|
29
|
+
fill: "none"
|
|
30
|
+
}, props), /*#__PURE__*/_react.default.createElement("rect", {
|
|
31
|
+
width: 800,
|
|
32
|
+
height: 800,
|
|
33
|
+
rx: 160,
|
|
34
|
+
fill: "black"
|
|
35
|
+
}), /*#__PURE__*/_react.default.createElement("g", {
|
|
36
|
+
clipPath: "url(#NeetoTower_js__clip0_1987_284)"
|
|
37
|
+
}, /*#__PURE__*/_react.default.createElement("path", {
|
|
38
|
+
d: "M557.734 225H421.212V431.122L557.734 225Z",
|
|
39
|
+
fill: "#0DA84C"
|
|
40
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
41
|
+
d: "M241.859 225H421.212L421.212 318.692H241.859V225Z",
|
|
42
|
+
fill: "#5BCC5A"
|
|
43
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
44
|
+
d: "M327.52 573L327.52 225.002L421.212 225V431.122L327.52 573Z",
|
|
45
|
+
fill: "#75DC66"
|
|
46
|
+
})), /*#__PURE__*/_react.default.createElement("defs", null, /*#__PURE__*/_react.default.createElement("clipPath", {
|
|
47
|
+
id: "NeetoTower_js__clip0_1987_284"
|
|
48
|
+
}, /*#__PURE__*/_react.default.createElement("rect", {
|
|
49
|
+
width: 348.3,
|
|
50
|
+
height: 348.3,
|
|
51
|
+
fill: "white",
|
|
52
|
+
transform: "translate(225.352 225.35)"
|
|
53
|
+
}))));
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
var _default = NeetoTower;
|
|
57
|
+
exports.default = _default;
|
|
58
|
+
//# sourceMappingURL=NeetoTower.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/app-icons/NeetoTower.js"],"names":["NeetoTower","size","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,UAAU,GAAG,SAAbA,UAAa,OAA6B;AAAA,uBAA1BC,IAA0B;AAAA,MAA1BA,IAA0B,0BAAnB,EAAmB;AAAA,MAAZC,KAAY;;AAC9C,sBACE;AACE,IAAA,KAAK,EAAED,IADT;AAEE,IAAA,MAAM,EAAEA,IAFV;AAGE,IAAA,OAAO,EAAC,aAHV;AAIE,IAAA,IAAI,EAAC;AAJP,KAKMC,KALN,gBAOE;AAAM,IAAA,KAAK,EAAE,GAAb;AAAkB,IAAA,MAAM,EAAE,GAA1B;AAA+B,IAAA,EAAE,EAAE,GAAnC;AAAwC,IAAA,IAAI,EAAC;AAA7C,IAPF,eAQE;AAAG,IAAA,QAAQ,EAAC;AAAZ,kBACE;AAAM,IAAA,CAAC,EAAC,2CAAR;AAAoD,IAAA,IAAI,EAAC;AAAzD,IADF,eAEE;AACE,IAAA,CAAC,EAAC,mDADJ;AAEE,IAAA,IAAI,EAAC;AAFP,IAFF,eAME;AACE,IAAA,CAAC,EAAC,4DADJ;AAEE,IAAA,IAAI,EAAC;AAFP,IANF,CARF,eAmBE,wDACE;AAAU,IAAA,EAAE,EAAC;AAAb,kBACE;AACE,IAAA,KAAK,EAAE,KADT;AAEE,IAAA,MAAM,EAAE,KAFV;AAGE,IAAA,IAAI,EAAC,OAHP;AAIE,IAAA,SAAS,EAAC;AAJZ,IADF,CADF,CAnBF,CADF;AAgCD,CAjCD;;eAkCeF,U","sourcesContent":["import React from \"react\";\nconst NeetoTower = ({ size = 36, ...props }) => {\n return (\n <svg\n width={size}\n height={size}\n viewBox=\"0 0 800 800\"\n fill=\"none\"\n {...props}\n >\n <rect width={800} height={800} rx={160} fill=\"black\" />\n <g clipPath=\"url(#NeetoTower_js__clip0_1987_284)\">\n <path d=\"M557.734 225H421.212V431.122L557.734 225Z\" fill=\"#0DA84C\" />\n <path\n d=\"M241.859 225H421.212L421.212 318.692H241.859V225Z\"\n fill=\"#5BCC5A\"\n />\n <path\n d=\"M327.52 573L327.52 225.002L421.212 225V431.122L327.52 573Z\"\n fill=\"#75DC66\"\n />\n </g>\n <defs>\n <clipPath id=\"NeetoTower_js__clip0_1987_284\">\n <rect\n width={348.3}\n height={348.3}\n fill=\"white\"\n transform=\"translate(225.352 225.35)\"\n />\n </clipPath>\n </defs>\n </svg>\n );\n};\nexport default NeetoTower;\n"],"file":"NeetoTower.js"}
|
|
@@ -153,6 +153,12 @@ Object.defineProperty(exports, "NeetoTestify", {
|
|
|
153
153
|
return _NeetoTestify.default;
|
|
154
154
|
}
|
|
155
155
|
});
|
|
156
|
+
Object.defineProperty(exports, "NeetoTower", {
|
|
157
|
+
enumerable: true,
|
|
158
|
+
get: function get() {
|
|
159
|
+
return _NeetoTower.default;
|
|
160
|
+
}
|
|
161
|
+
});
|
|
156
162
|
Object.defineProperty(exports, "NeetoWireframe", {
|
|
157
163
|
enumerable: true,
|
|
158
164
|
get: function get() {
|
|
@@ -210,6 +216,8 @@ var _NeetoSite = _interopRequireDefault(require("./NeetoSite"));
|
|
|
210
216
|
|
|
211
217
|
var _NeetoTestify = _interopRequireDefault(require("./NeetoTestify"));
|
|
212
218
|
|
|
219
|
+
var _NeetoTower = _interopRequireDefault(require("./NeetoTower"));
|
|
220
|
+
|
|
213
221
|
var _NeetoWireframe = _interopRequireDefault(require("./NeetoWireframe"));
|
|
214
222
|
|
|
215
223
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../generate/app-icons/index.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../../generate/app-icons/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA","sourcesContent":["import Neeto from \"./Neeto\";\r\nimport NeetoCal from \"./NeetoCal\";\r\nimport NeetoChangelog from \"./NeetoChangelog\";\r\nimport NeetoChat from \"./NeetoChat\";\r\nimport NeetoCi from \"./NeetoCi\";\r\nimport NeetoCode from \"./NeetoCode\";\r\nimport NeetoCourse from \"./NeetoCourse\";\r\nimport NeetoCrm from \"./NeetoCrm\";\r\nimport NeetoDeploy from \"./NeetoDeploy\";\r\nimport NeetoDesk from \"./NeetoDesk\";\r\nimport NeetoForm from \"./NeetoForm\";\r\nimport NeetoGit from \"./NeetoGit\";\r\nimport NeetoInvisible from \"./NeetoInvisible\";\r\nimport NeetoInvoice from \"./NeetoInvoice\";\r\nimport NeetoKb from \"./NeetoKb\";\r\nimport NeetoPlanner from \"./NeetoPlanner\";\r\nimport NeetoPlaydash from \"./NeetoPlaydash\";\r\nimport NeetoPublish from \"./NeetoPublish\";\r\nimport NeetoQuiz from \"./NeetoQuiz\";\r\nimport NeetoRecord from \"./NeetoRecord\";\r\nimport NeetoReplay from \"./NeetoReplay\";\r\nimport NeetoRunner from \"./NeetoRunner\";\r\nimport NeetoSeo from \"./NeetoSeo\";\r\nimport NeetoSite from \"./NeetoSite\";\r\nimport NeetoTestify from \"./NeetoTestify\";\r\nimport NeetoTower from \"./NeetoTower\";\r\nimport NeetoWireframe from \"./NeetoWireframe\";\r\nexport { \r\n\tNeeto,\r\n\tNeetoCal,\r\n\tNeetoChangelog,\r\n\tNeetoChat,\r\n\tNeetoCi,\r\n\tNeetoCode,\r\n\tNeetoCourse,\r\n\tNeetoCrm,\r\n\tNeetoDeploy,\r\n\tNeetoDesk,\r\n\tNeetoForm,\r\n\tNeetoGit,\r\n\tNeetoInvisible,\r\n\tNeetoInvoice,\r\n\tNeetoKb,\r\n\tNeetoPlanner,\r\n\tNeetoPlaydash,\r\n\tNeetoPublish,\r\n\tNeetoQuiz,\r\n\tNeetoRecord,\r\n\tNeetoReplay,\r\n\tNeetoRunner,\r\n\tNeetoSeo,\r\n\tNeetoSite,\r\n\tNeetoTestify,\r\n\tNeetoTower,\r\n\tNeetoWireframe\r\n};"],"file":"index.js"}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _excluded = ["size", "color", "strokeWidth"];
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
|
|
14
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
15
|
+
|
|
16
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
17
|
+
|
|
18
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
19
|
+
|
|
20
|
+
var CustomSize = function CustomSize(_ref) {
|
|
21
|
+
var _ref$size = _ref.size,
|
|
22
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
23
|
+
_ref$color = _ref.color,
|
|
24
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
25
|
+
_ref$strokeWidth = _ref.strokeWidth,
|
|
26
|
+
strokeWidth = _ref$strokeWidth === void 0 ? 1.5 : _ref$strokeWidth,
|
|
27
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
28
|
+
|
|
29
|
+
return /*#__PURE__*/_react.default.createElement("svg", _extends({
|
|
30
|
+
width: size,
|
|
31
|
+
height: size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: "none"
|
|
34
|
+
}, props), /*#__PURE__*/_react.default.createElement("path", {
|
|
35
|
+
d: "M7 19C6.46957 19 5.96086 18.7893 5.58579 18.4142C5.21071 18.0391 5 17.5304 5 17",
|
|
36
|
+
stroke: color,
|
|
37
|
+
strokeWidth: strokeWidth,
|
|
38
|
+
strokeLinecap: "round",
|
|
39
|
+
strokeLinejoin: "round"
|
|
40
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
41
|
+
d: "M5 13V11",
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth,
|
|
44
|
+
strokeLinecap: "round",
|
|
45
|
+
strokeLinejoin: "round"
|
|
46
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
47
|
+
d: "M5 7C5 6.46957 5.21071 5.96086 5.58579 5.58579C5.96086 5.21071 6.46957 5 7 5",
|
|
48
|
+
stroke: color,
|
|
49
|
+
strokeWidth: strokeWidth,
|
|
50
|
+
strokeLinecap: "round",
|
|
51
|
+
strokeLinejoin: "round"
|
|
52
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
53
|
+
d: "M11 5H13",
|
|
54
|
+
stroke: color,
|
|
55
|
+
strokeWidth: strokeWidth,
|
|
56
|
+
strokeLinecap: "round",
|
|
57
|
+
strokeLinejoin: "round"
|
|
58
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
59
|
+
d: "M17 5C17.5304 5 18.0391 5.21071 18.4142 5.58579C18.7893 5.96086 19 6.46957 19 7",
|
|
60
|
+
stroke: color,
|
|
61
|
+
strokeWidth: strokeWidth,
|
|
62
|
+
strokeLinecap: "round",
|
|
63
|
+
strokeLinejoin: "round"
|
|
64
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
65
|
+
d: "M19 11V13",
|
|
66
|
+
stroke: color,
|
|
67
|
+
strokeWidth: strokeWidth,
|
|
68
|
+
strokeLinecap: "round",
|
|
69
|
+
strokeLinejoin: "round"
|
|
70
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
71
|
+
d: "M19 17V21",
|
|
72
|
+
stroke: color,
|
|
73
|
+
strokeWidth: strokeWidth,
|
|
74
|
+
strokeLinecap: "round",
|
|
75
|
+
strokeLinejoin: "round"
|
|
76
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
77
|
+
d: "M21 19H17",
|
|
78
|
+
stroke: color,
|
|
79
|
+
strokeWidth: strokeWidth,
|
|
80
|
+
strokeLinecap: "round",
|
|
81
|
+
strokeLinejoin: "round"
|
|
82
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
83
|
+
d: "M13 19H11",
|
|
84
|
+
stroke: color,
|
|
85
|
+
strokeWidth: strokeWidth,
|
|
86
|
+
strokeLinecap: "round",
|
|
87
|
+
strokeLinejoin: "round"
|
|
88
|
+
}));
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
var _default = CustomSize;
|
|
92
|
+
exports.default = _default;
|
|
93
|
+
//# sourceMappingURL=CustomSize.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/CustomSize.js"],"names":["CustomSize","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,UAAU,GAAG,SAAbA,UAAa,OAKb;AAAA,uBAJJC,IAII;AAAA,MAJJA,IAII,0BAJG,EAIH;AAAA,wBAHJC,KAGI;AAAA,MAHJA,KAGI,2BAHI,cAGJ;AAAA,8BAFJC,WAEI;AAAA,MAFJA,WAEI,iCAFU,GAEV;AAAA,MADDC,KACC;;AACJ,sBACE;AAAK,IAAA,KAAK,EAAEH,IAAZ;AAAkB,IAAA,MAAM,EAAEA,IAA1B;AAAgC,IAAA,OAAO,EAAC,WAAxC;AAAoD,IAAA,IAAI,EAAC;AAAzD,KAAoEG,KAApE,gBACE;AACE,IAAA,CAAC,EAAC,iFADJ;AAEE,IAAA,MAAM,EAAEF,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IADF,eAQE;AACE,IAAA,CAAC,EAAC,UADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IARF,eAeE;AACE,IAAA,CAAC,EAAC,8EADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAfF,eAsBE;AACE,IAAA,CAAC,EAAC,UADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAtBF,eA6BE;AACE,IAAA,CAAC,EAAC,iFADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IA7BF,eAoCE;AACE,IAAA,CAAC,EAAC,WADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IApCF,eA2CE;AACE,IAAA,CAAC,EAAC,WADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IA3CF,eAkDE;AACE,IAAA,CAAC,EAAC,WADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAlDF,eAyDE;AACE,IAAA,CAAC,EAAC,WADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAzDF,CADF;AAmED,CAzED;;eA0EeH,U","sourcesContent":["import React from \"react\";\nconst CustomSize = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <path\n d=\"M7 19C6.46957 19 5.96086 18.7893 5.58579 18.4142C5.21071 18.0391 5 17.5304 5 17\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M5 13V11\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M5 7C5 6.46957 5.21071 5.96086 5.58579 5.58579C5.96086 5.21071 6.46957 5 7 5\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M11 5H13\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M17 5C17.5304 5 18.0391 5.21071 18.4142 5.58579C18.7893 5.96086 19 6.46957 19 7\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M19 11V13\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M19 17V21\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M21 19H17\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M13 19H11\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </svg>\n );\n};\nexport default CustomSize;\n"],"file":"CustomSize.js"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _excluded = ["size", "color", "strokeWidth"];
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
|
|
14
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
15
|
+
|
|
16
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
17
|
+
|
|
18
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
19
|
+
|
|
20
|
+
var EntireScreen = function EntireScreen(_ref) {
|
|
21
|
+
var _ref$size = _ref.size,
|
|
22
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
23
|
+
_ref$color = _ref.color,
|
|
24
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
25
|
+
_ref$strokeWidth = _ref.strokeWidth,
|
|
26
|
+
strokeWidth = _ref$strokeWidth === void 0 ? 1.5 : _ref$strokeWidth,
|
|
27
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
28
|
+
|
|
29
|
+
return /*#__PURE__*/_react.default.createElement("svg", _extends({
|
|
30
|
+
width: size,
|
|
31
|
+
height: size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: "none"
|
|
34
|
+
}, props), /*#__PURE__*/_react.default.createElement("path", {
|
|
35
|
+
d: "M3 6.28571C3 5.67951 3.21071 5.09812 3.58579 4.66947C3.96086 4.24082 4.46957 4 5 4H19C19.5304 4 20.0391 4.24082 20.4142 4.66947C20.7893 5.09812 21 5.67951 21 6.28571V17.7143C21 18.3205 20.7893 18.9019 20.4142 19.3305C20.0391 19.7592 19.5304 20 19 20H5C4.46957 20 3.96086 19.7592 3.58579 19.3305C3.21071 18.9019 3 18.3205 3 17.7143V6.28571Z",
|
|
36
|
+
stroke: color,
|
|
37
|
+
strokeWidth: strokeWidth,
|
|
38
|
+
strokeLinecap: "round",
|
|
39
|
+
strokeLinejoin: "round"
|
|
40
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
41
|
+
d: "M14 7H17.8C17.9105 7 18 7.08954 18 7.2V11",
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth,
|
|
44
|
+
strokeLinecap: "round"
|
|
45
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
46
|
+
d: "M10 17H6.2C6.08954 17 6 16.9105 6 16.8V13",
|
|
47
|
+
stroke: color,
|
|
48
|
+
strokeWidth: strokeWidth,
|
|
49
|
+
strokeLinecap: "round"
|
|
50
|
+
}));
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
var _default = EntireScreen;
|
|
54
|
+
exports.default = _default;
|
|
55
|
+
//# sourceMappingURL=EntireScreen.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/EntireScreen.js"],"names":["EntireScreen","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,YAAY,GAAG,SAAfA,YAAe,OAKf;AAAA,uBAJJC,IAII;AAAA,MAJJA,IAII,0BAJG,EAIH;AAAA,wBAHJC,KAGI;AAAA,MAHJA,KAGI,2BAHI,cAGJ;AAAA,8BAFJC,WAEI;AAAA,MAFJA,WAEI,iCAFU,GAEV;AAAA,MADDC,KACC;;AACJ,sBACE;AAAK,IAAA,KAAK,EAAEH,IAAZ;AAAkB,IAAA,MAAM,EAAEA,IAA1B;AAAgC,IAAA,OAAO,EAAC,WAAxC;AAAoD,IAAA,IAAI,EAAC;AAAzD,KAAoEG,KAApE,gBACE;AACE,IAAA,CAAC,EAAC,qVADJ;AAEE,IAAA,MAAM,EAAEF,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IADF,eAQE;AACE,IAAA,CAAC,EAAC,2CADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IARF,eAcE;AACE,IAAA,CAAC,EAAC,2CADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAdF,CADF;AAuBD,CA7BD;;eA8BeH,Y","sourcesContent":["import React from \"react\";\nconst EntireScreen = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <path\n d=\"M3 6.28571C3 5.67951 3.21071 5.09812 3.58579 4.66947C3.96086 4.24082 4.46957 4 5 4H19C19.5304 4 20.0391 4.24082 20.4142 4.66947C20.7893 5.09812 21 5.67951 21 6.28571V17.7143C21 18.3205 20.7893 18.9019 20.4142 19.3305C20.0391 19.7592 19.5304 20 19 20H5C4.46957 20 3.96086 19.7592 3.58579 19.3305C3.21071 18.9019 3 18.3205 3 17.7143V6.28571Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M14 7H17.8C17.9105 7 18 7.08954 18 7.2V11\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M10 17H6.2C6.08954 17 6 16.9105 6 16.8V13\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default EntireScreen;\n"],"file":"EntireScreen.js"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _excluded = ["size", "color", "strokeWidth"];
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
|
|
14
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
15
|
+
|
|
16
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
17
|
+
|
|
18
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
19
|
+
|
|
20
|
+
var MicOff = function MicOff(_ref) {
|
|
21
|
+
var _ref$size = _ref.size,
|
|
22
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
23
|
+
_ref$color = _ref.color,
|
|
24
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
25
|
+
_ref$strokeWidth = _ref.strokeWidth,
|
|
26
|
+
strokeWidth = _ref$strokeWidth === void 0 ? 1.5 : _ref$strokeWidth,
|
|
27
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
28
|
+
|
|
29
|
+
return /*#__PURE__*/_react.default.createElement("svg", _extends({
|
|
30
|
+
width: size,
|
|
31
|
+
height: size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: "none"
|
|
34
|
+
}, props), /*#__PURE__*/_react.default.createElement("path", {
|
|
35
|
+
d: "M9.13466 5C9.27766 4.56335 9.53111 4.16167 9.87863 3.83245C10.4412 3.29945 11.2043 3.00002 11.9999 3.00002C12.7956 3.00002 13.5587 3.29945 14.1213 3.83245C14.6839 4.36545 14.9999 5.08835 14.9999 5.84212V10.579C14.9999 11.3327 14.6839 12.0556 14.1213 12.5886C13.5587 13.1216 12.7956 13.4211 11.9999 13.4211C11.2043 13.4211 10.4412 13.1216 9.87863 12.5886C9.31602 12.0556 8.99995 11.3327 8.99995 10.579V8.5",
|
|
36
|
+
stroke: color,
|
|
37
|
+
strokeWidth: strokeWidth,
|
|
38
|
+
strokeLinecap: "round",
|
|
39
|
+
strokeLinejoin: "round"
|
|
40
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
41
|
+
d: "M5 10.579C5 12.3378 5.7375 14.0245 7.05025 15.2682C8.36301 16.5119 10.1435 17.2105 12 17.2105C13.1928 17.2105 14.3542 16.9221 15.3803 16.3861M19 10.579C19 12.2144 18.3624 13.7875 17.2175 15",
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth,
|
|
44
|
+
strokeLinecap: "round",
|
|
45
|
+
strokeLinejoin: "round"
|
|
46
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
47
|
+
d: "M7.99992 21H15.9999",
|
|
48
|
+
stroke: color,
|
|
49
|
+
strokeWidth: strokeWidth,
|
|
50
|
+
strokeLinecap: "round",
|
|
51
|
+
strokeLinejoin: "round"
|
|
52
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
53
|
+
d: "M11.9999 17.2106V21",
|
|
54
|
+
stroke: color,
|
|
55
|
+
strokeWidth: strokeWidth,
|
|
56
|
+
strokeLinecap: "round",
|
|
57
|
+
strokeLinejoin: "round"
|
|
58
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
59
|
+
d: "M5 3L19 21",
|
|
60
|
+
stroke: color,
|
|
61
|
+
strokeWidth: strokeWidth,
|
|
62
|
+
strokeLinecap: "round"
|
|
63
|
+
}));
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
var _default = MicOff;
|
|
67
|
+
exports.default = _default;
|
|
68
|
+
//# sourceMappingURL=MicOff.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/MicOff.js"],"names":["MicOff","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,MAAM,GAAG,SAATA,MAAS,OAKT;AAAA,uBAJJC,IAII;AAAA,MAJJA,IAII,0BAJG,EAIH;AAAA,wBAHJC,KAGI;AAAA,MAHJA,KAGI,2BAHI,cAGJ;AAAA,8BAFJC,WAEI;AAAA,MAFJA,WAEI,iCAFU,GAEV;AAAA,MADDC,KACC;;AACJ,sBACE;AAAK,IAAA,KAAK,EAAEH,IAAZ;AAAkB,IAAA,MAAM,EAAEA,IAA1B;AAAgC,IAAA,OAAO,EAAC,WAAxC;AAAoD,IAAA,IAAI,EAAC;AAAzD,KAAoEG,KAApE,gBACE;AACE,IAAA,CAAC,EAAC,sZADJ;AAEE,IAAA,MAAM,EAAEF,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IADF,eAQE;AACE,IAAA,CAAC,EAAC,+LADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IARF,eAeE;AACE,IAAA,CAAC,EAAC,qBADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAfF,eAsBE;AACE,IAAA,CAAC,EAAC,qBADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAtBF,eA6BE;AACE,IAAA,CAAC,EAAC,YADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IA7BF,CADF;AAsCD,CA5CD;;eA6CeH,M","sourcesContent":["import React from \"react\";\nconst MicOff = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <path\n d=\"M9.13466 5C9.27766 4.56335 9.53111 4.16167 9.87863 3.83245C10.4412 3.29945 11.2043 3.00002 11.9999 3.00002C12.7956 3.00002 13.5587 3.29945 14.1213 3.83245C14.6839 4.36545 14.9999 5.08835 14.9999 5.84212V10.579C14.9999 11.3327 14.6839 12.0556 14.1213 12.5886C13.5587 13.1216 12.7956 13.4211 11.9999 13.4211C11.2043 13.4211 10.4412 13.1216 9.87863 12.5886C9.31602 12.0556 8.99995 11.3327 8.99995 10.579V8.5\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M5 10.579C5 12.3378 5.7375 14.0245 7.05025 15.2682C8.36301 16.5119 10.1435 17.2105 12 17.2105C13.1928 17.2105 14.3542 16.9221 15.3803 16.3861M19 10.579C19 12.2144 18.3624 13.7875 17.2175 15\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M7.99992 21H15.9999\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M11.9999 17.2106V21\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M5 3L19 21\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default MicOff;\n"],"file":"MicOff.js"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _excluded = ["size", "color", "strokeWidth"];
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
|
|
14
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
15
|
+
|
|
16
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
17
|
+
|
|
18
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
19
|
+
|
|
20
|
+
var SpecificWindow = function SpecificWindow(_ref) {
|
|
21
|
+
var _ref$size = _ref.size,
|
|
22
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
23
|
+
_ref$color = _ref.color,
|
|
24
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
25
|
+
_ref$strokeWidth = _ref.strokeWidth,
|
|
26
|
+
strokeWidth = _ref$strokeWidth === void 0 ? 1.5 : _ref$strokeWidth,
|
|
27
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
28
|
+
|
|
29
|
+
return /*#__PURE__*/_react.default.createElement("svg", _extends({
|
|
30
|
+
width: size,
|
|
31
|
+
height: size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: "none"
|
|
34
|
+
}, props), /*#__PURE__*/_react.default.createElement("path", {
|
|
35
|
+
d: "M3 7C3 6.46957 3.21071 5.96086 3.58579 5.58579C3.96086 5.21071 4.46957 5 5 5H19C19.5304 5 20.0391 5.21071 20.4142 5.58579C20.7893 5.96086 21 6.46957 21 7V17C21 17.5304 20.7893 18.0391 20.4142 18.4142C20.0391 18.7893 19.5304 19 19 19H5C4.46957 19 3.96086 18.7893 3.58579 18.4142C3.21071 18.0391 3 17.5304 3 17V7Z",
|
|
36
|
+
stroke: color,
|
|
37
|
+
strokeWidth: strokeWidth,
|
|
38
|
+
strokeLinecap: "round",
|
|
39
|
+
strokeLinejoin: "round"
|
|
40
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
41
|
+
d: "M8.01001 7.5H8.02001",
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth,
|
|
44
|
+
strokeLinecap: "round",
|
|
45
|
+
strokeLinejoin: "round"
|
|
46
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
47
|
+
d: "M10 7.5H10.01",
|
|
48
|
+
stroke: color,
|
|
49
|
+
strokeWidth: strokeWidth,
|
|
50
|
+
strokeLinecap: "round",
|
|
51
|
+
strokeLinejoin: "round"
|
|
52
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
53
|
+
d: "M6 7.5H6.01",
|
|
54
|
+
stroke: color,
|
|
55
|
+
strokeWidth: strokeWidth,
|
|
56
|
+
strokeLinecap: "round",
|
|
57
|
+
strokeLinejoin: "round"
|
|
58
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
59
|
+
d: "M3.5 10H21",
|
|
60
|
+
stroke: color,
|
|
61
|
+
strokeWidth: strokeWidth,
|
|
62
|
+
strokeLinecap: "round"
|
|
63
|
+
}));
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
var _default = SpecificWindow;
|
|
67
|
+
exports.default = _default;
|
|
68
|
+
//# sourceMappingURL=SpecificWindow.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/SpecificWindow.js"],"names":["SpecificWindow","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,cAAc,GAAG,SAAjBA,cAAiB,OAKjB;AAAA,uBAJJC,IAII;AAAA,MAJJA,IAII,0BAJG,EAIH;AAAA,wBAHJC,KAGI;AAAA,MAHJA,KAGI,2BAHI,cAGJ;AAAA,8BAFJC,WAEI;AAAA,MAFJA,WAEI,iCAFU,GAEV;AAAA,MADDC,KACC;;AACJ,sBACE;AAAK,IAAA,KAAK,EAAEH,IAAZ;AAAkB,IAAA,MAAM,EAAEA,IAA1B;AAAgC,IAAA,OAAO,EAAC,WAAxC;AAAoD,IAAA,IAAI,EAAC;AAAzD,KAAoEG,KAApE,gBACE;AACE,IAAA,CAAC,EAAC,yTADJ;AAEE,IAAA,MAAM,EAAEF,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IADF,eAQE;AACE,IAAA,CAAC,EAAC,sBADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IARF,eAeE;AACE,IAAA,CAAC,EAAC,eADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAfF,eAsBE;AACE,IAAA,CAAC,EAAC,aADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IAtBF,eA6BE;AACE,IAAA,CAAC,EAAC,YADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IA7BF,CADF;AAsCD,CA5CD;;eA6CeH,c","sourcesContent":["import React from \"react\";\nconst SpecificWindow = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <path\n d=\"M3 7C3 6.46957 3.21071 5.96086 3.58579 5.58579C3.96086 5.21071 4.46957 5 5 5H19C19.5304 5 20.0391 5.21071 20.4142 5.58579C20.7893 5.96086 21 6.46957 21 7V17C21 17.5304 20.7893 18.0391 20.4142 18.4142C20.0391 18.7893 19.5304 19 19 19H5C4.46957 19 3.96086 18.7893 3.58579 18.4142C3.21071 18.0391 3 17.5304 3 17V7Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M8.01001 7.5H8.02001\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M10 7.5H10.01\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M6 7.5H6.01\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.5 10H21\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default SpecificWindow;\n"],"file":"SpecificWindow.js"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _excluded = ["size", "color", "strokeWidth"];
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
|
|
14
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
15
|
+
|
|
16
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
17
|
+
|
|
18
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
19
|
+
|
|
20
|
+
var VideoOff = function VideoOff(_ref) {
|
|
21
|
+
var _ref$size = _ref.size,
|
|
22
|
+
size = _ref$size === void 0 ? 24 : _ref$size,
|
|
23
|
+
_ref$color = _ref.color,
|
|
24
|
+
color = _ref$color === void 0 ? "currentColor" : _ref$color,
|
|
25
|
+
_ref$strokeWidth = _ref.strokeWidth,
|
|
26
|
+
strokeWidth = _ref$strokeWidth === void 0 ? 1.5 : _ref$strokeWidth,
|
|
27
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
28
|
+
|
|
29
|
+
return /*#__PURE__*/_react.default.createElement("svg", _extends({
|
|
30
|
+
width: size,
|
|
31
|
+
height: size,
|
|
32
|
+
viewBox: "0 0 24 24",
|
|
33
|
+
fill: "none"
|
|
34
|
+
}, props), /*#__PURE__*/_react.default.createElement("path", {
|
|
35
|
+
d: "M15 10L19.553 7.724C19.7054 7.64783 19.8748 7.61188 20.045 7.61954C20.2152 7.62721 20.3806 7.67824 20.5256 7.7678C20.6706 7.85736 20.7902 7.98247 20.8733 8.13127C20.9563 8.28006 20.9999 8.44761 21 8.618V15.382C20.9999 15.5524 20.9563 15.7199 20.8733 15.8687C20.7902 16.0175 20.6706 16.1426 20.5256 16.2322C20.3806 16.3218 20.2152 16.3728 20.045 16.3805C19.8748 16.3881 19.7054 16.3522 19.553 16.276L15 14V10Z",
|
|
36
|
+
stroke: color,
|
|
37
|
+
strokeWidth: strokeWidth,
|
|
38
|
+
strokeLinecap: "round",
|
|
39
|
+
strokeLinejoin: "round"
|
|
40
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
41
|
+
d: "M10 6H13C13.5304 6 14.0391 6.21071 14.4142 6.58579C14.7893 6.96086 15 7.46957 15 8V14M6 6H5C4.46957 6 3.96086 6.21071 3.58579 6.58579C3.21071 6.96086 3 7.46957 3 8V16C3 16.5304 3.21071 17.0391 3.58579 17.4142C3.96086 17.7893 4.46957 18 5 18H13C13.5304 18 14.0391 17.7893 14.4142 17.4142C14.5389 17.2895 14.6454 17.1501 14.7321 17",
|
|
42
|
+
stroke: color,
|
|
43
|
+
strokeWidth: strokeWidth,
|
|
44
|
+
strokeLinecap: "round",
|
|
45
|
+
strokeLinejoin: "round"
|
|
46
|
+
}), /*#__PURE__*/_react.default.createElement("path", {
|
|
47
|
+
d: "M4 3.5L21 20",
|
|
48
|
+
stroke: color,
|
|
49
|
+
strokeWidth: strokeWidth,
|
|
50
|
+
strokeLinecap: "round"
|
|
51
|
+
}));
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
var _default = VideoOff;
|
|
55
|
+
exports.default = _default;
|
|
56
|
+
//# sourceMappingURL=VideoOff.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../generate/icons/VideoOff.js"],"names":["VideoOff","size","color","strokeWidth","props"],"mappings":";;;;;;;AAAA;;;;;;;;;;;;AACA,IAAMA,QAAQ,GAAG,SAAXA,QAAW,OAKX;AAAA,uBAJJC,IAII;AAAA,MAJJA,IAII,0BAJG,EAIH;AAAA,wBAHJC,KAGI;AAAA,MAHJA,KAGI,2BAHI,cAGJ;AAAA,8BAFJC,WAEI;AAAA,MAFJA,WAEI,iCAFU,GAEV;AAAA,MADDC,KACC;;AACJ,sBACE;AAAK,IAAA,KAAK,EAAEH,IAAZ;AAAkB,IAAA,MAAM,EAAEA,IAA1B;AAAgC,IAAA,OAAO,EAAC,WAAxC;AAAoD,IAAA,IAAI,EAAC;AAAzD,KAAoEG,KAApE,gBACE;AACE,IAAA,CAAC,EAAC,0ZADJ;AAEE,IAAA,MAAM,EAAEF,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IADF,eAQE;AACE,IAAA,CAAC,EAAC,2UADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC,OAJhB;AAKE,IAAA,cAAc,EAAC;AALjB,IARF,eAeE;AACE,IAAA,CAAC,EAAC,cADJ;AAEE,IAAA,MAAM,EAAED,KAFV;AAGE,IAAA,WAAW,EAAEC,WAHf;AAIE,IAAA,aAAa,EAAC;AAJhB,IAfF,CADF;AAwBD,CA9BD;;eA+BeH,Q","sourcesContent":["import React from \"react\";\nconst VideoOff = ({\n size = 24,\n color = \"currentColor\",\n strokeWidth = 1.5,\n ...props\n}) => {\n return (\n <svg width={size} height={size} viewBox=\"0 0 24 24\" fill=\"none\" {...props}>\n <path\n d=\"M15 10L19.553 7.724C19.7054 7.64783 19.8748 7.61188 20.045 7.61954C20.2152 7.62721 20.3806 7.67824 20.5256 7.7678C20.6706 7.85736 20.7902 7.98247 20.8733 8.13127C20.9563 8.28006 20.9999 8.44761 21 8.618V15.382C20.9999 15.5524 20.9563 15.7199 20.8733 15.8687C20.7902 16.0175 20.6706 16.1426 20.5256 16.2322C20.3806 16.3218 20.2152 16.3728 20.045 16.3805C19.8748 16.3881 19.7054 16.3522 19.553 16.276L15 14V10Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M10 6H13C13.5304 6 14.0391 6.21071 14.4142 6.58579C14.7893 6.96086 15 7.46957 15 8V14M6 6H5C4.46957 6 3.96086 6.21071 3.58579 6.58579C3.21071 6.96086 3 7.46957 3 8V16C3 16.5304 3.21071 17.0391 3.58579 17.4142C3.96086 17.7893 4.46957 18 5 18H13C13.5304 18 14.0391 17.7893 14.4142 17.4142C14.5389 17.2895 14.6454 17.1501 14.7321 17\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M4 3.5L21 20\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n </svg>\n );\n};\nexport default VideoOff;\n"],"file":"VideoOff.js"}
|