@bubbles-ui/icons 1.2.116 → 1.2.118
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/package.json +1 -1
- package/solid/AddCircleIcon.d.ts +3 -0
- package/solid/AddCircleIcon.js +15 -0
- package/solid/InfoIcon.d.ts +3 -0
- package/solid/InfoIcon.js +22 -0
- package/solid/NoPauseIcon.d.ts +3 -0
- package/solid/NoPauseIcon.js +19 -0
- package/solid/ViewOffIcon.d.ts +3 -0
- package/solid/ViewOffIcon.js +15 -0
- package/solid/esm/AddCircleIcon.d.ts +3 -0
- package/solid/esm/AddCircleIcon.js +15 -0
- package/solid/esm/InfoIcon.d.ts +3 -0
- package/solid/esm/InfoIcon.js +22 -0
- package/solid/esm/NoPauseIcon.d.ts +3 -0
- package/solid/esm/NoPauseIcon.js +19 -0
- package/solid/esm/ViewOffIcon.d.ts +3 -0
- package/solid/esm/ViewOffIcon.js +15 -0
- package/solid/esm/index.d.ts +4 -0
- package/solid/esm/index.js +4 -0
- package/solid/index.d.ts +4 -0
- package/solid/index.js +4 -0
package/package.json
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function AddCircleIcon(props) {
|
|
3
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
4
|
+
viewBox: "0 0 19 18",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1em",
|
|
8
|
+
height: "1em"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M9.176.004A8.996 8.996 0 0 0 .96 6.147 8.826 8.826 0 0 0 .503 9c0 .428.011.64.051 1.005a8.987 8.987 0 0 0 3.654 6.278c.726.53 1.567.963 2.437 1.255a8.815 8.815 0 0 0 2.855.458c.428 0 .64-.01 1.004-.05a8.99 8.99 0 0 0 5.015-2.253c.126-.111.562-.548.674-.674a8.86 8.86 0 0 0 1.37-2.02 8.878 8.878 0 0 0 .93-3.652c0-.044.002-.073.007-.073.004 0 .007-.098.007-.278a1.92 1.92 0 0 0-.007-.273c-.005.003-.008-.022-.008-.07a8.987 8.987 0 0 0-1.349-4.409 8.851 8.851 0 0 0-1.134-1.458A8.85 8.85 0 0 0 13.5.936a8.86 8.86 0 0 0-3.416-.919C9.94.007 9.31-.002 9.176.004Zm-.087.99a8.006 8.006 0 0 0-4.172 1.427 8.246 8.246 0 0 0-1.673 1.567 8.012 8.012 0 0 0-1.531 3.1 8.161 8.161 0 0 0-.18 2.808 8.007 8.007 0 0 0 3.175 5.531 8.06 8.06 0 0 0 2.581 1.28 8.125 8.125 0 0 0 3.136.256 7.907 7.907 0 0 0 2.635-.78 7.853 7.853 0 0 0 2.106-1.516 7.852 7.852 0 0 0 1.516-2.107c.558-1.13.831-2.299.831-3.56a7.88 7.88 0 0 0-.831-3.56 7.844 7.844 0 0 0-1.515-2.107 7.844 7.844 0 0 0-2.107-1.515A7.9 7.9 0 0 0 9.885.994c-.173-.009-.62-.008-.796 0Zm.306 4.121a.506.506 0 0 0-.365.328l-.016.047-.004 1.508-.004 1.509-1.508.003-1.508.004-.047.016a.517.517 0 0 0-.315.315.38.38 0 0 0-.02.155.38.38 0 0 0 .02.155c.047.142.17.266.315.315l.047.016 1.508.004 1.508.003.004 1.509.004 1.508.016.047c.049.144.172.267.315.315a.38.38 0 0 0 .155.019.38.38 0 0 0 .154-.02.517.517 0 0 0 .316-.314l.016-.047.003-1.508.004-1.509L11.5 9.49l1.509-.004.046-.016a.518.518 0 0 0 .315-.315.38.38 0 0 0 .02-.155.38.38 0 0 0-.02-.155.518.518 0 0 0-.315-.315l-.046-.016L11.5 8.51l-1.508-.003-.004-1.509-.003-1.508-.016-.047a.514.514 0 0 0-.316-.314.597.597 0 0 0-.259-.014ZM.503 9.004c0 .154 0 .216.002.138V8.86c-.001-.076-.002-.012-.002.143Z",
|
|
12
|
+
clipRule: "evenodd"
|
|
13
|
+
}));
|
|
14
|
+
}
|
|
15
|
+
module.exports = AddCircleIcon;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function InfoIcon(props) {
|
|
3
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
4
|
+
viewBox: "0 0 15 16",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1em",
|
|
8
|
+
height: "1em"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
10
|
+
clipPath: "url(#a)"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M7.224.947a7.023 7.023 0 0 0-5.1 2.48 7.054 7.054 0 0 0-1.669 4.14c-.01.149-.01.715 0 .864a7.053 7.053 0 0 0 2.473 4.944 7.041 7.041 0 0 0 3.753 1.635c.29.033.462.042.82.042.356 0 .528-.01.818-.042a7.064 7.064 0 0 0 6.171-6.03c.048-.345.063-.576.063-.981 0-.357-.009-.53-.042-.82a7.045 7.045 0 0 0-2.439-4.557A7.053 7.053 0 0 0 7.944.955a16.433 16.433 0 0 0-.72-.008Zm.093.813a6.19 6.19 0 0 0-4.233 1.829 6.06 6.06 0 0 0-1.197 1.676 6.162 6.162 0 0 0-.609 2.209 6.217 6.217 0 0 0 2.187 5.29 6.227 6.227 0 0 0 4.716 1.441 6.227 6.227 0 0 0 4.083-2.171 6.226 6.226 0 0 0 1.455-4.59 6.214 6.214 0 0 0-.95-2.796 6.249 6.249 0 0 0-4.353-2.826 6.383 6.383 0 0 0-1.099-.062Zm-.15 2.739a.628.628 0 0 0-.166 1.18c.1.05.18.066.3.062a.538.538 0 0 0 .227-.048.656.656 0 0 0 .33-.335.632.632 0 0 0-.286-.796.644.644 0 0 0-.404-.063Zm-.606 2.21a.383.383 0 0 0-.234.117.375.375 0 0 0-.118.285c0 .075.015.139.047.198.03.054.113.135.167.163.084.044.078.043.38.047.26.003.272.003.28.015.008.01.01.176.01 1.149 0 .72.001 1.161.005 1.203a1.292 1.292 0 0 0 1.155 1.173c.03.003.182.006.34.006.322 0 .335-.002.42-.043a.326.326 0 0 0 .102-.077.357.357 0 0 0 .118-.302.394.394 0 0 0-.016-.112.428.428 0 0 0-.259-.26c-.037-.012-.053-.013-.336-.016-.34-.005-.346-.005-.45-.055a.328.328 0 0 1-.12-.088.434.434 0 0 1-.134-.242c-.009-.041-.01-.172-.01-1.19 0-.751-.002-1.163-.006-1.204a.846.846 0 0 0-.59-.73c-.11-.036-.142-.038-.442-.04-.15-.001-.29 0-.309.003Z",
|
|
14
|
+
clipRule: "evenodd"
|
|
15
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
16
|
+
id: "a"
|
|
17
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M0 0h15v15H0z",
|
|
19
|
+
transform: "translate(0 .5)"
|
|
20
|
+
}))));
|
|
21
|
+
}
|
|
22
|
+
module.exports = InfoIcon;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function NoPauseIcon(props) {
|
|
3
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
4
|
+
viewBox: "0 0 19 18",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1em",
|
|
8
|
+
height: "1em"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M5.843 2.45c-.695.044-1.19.497-1.322 1.213a2.117 2.117 0 0 0-.021.145 1593.91 1593.91 0 0 0 0 9.336c.03.36.153.65.375.88.043.045.088.086.136.124l.777.316c.058.01.153.012.608.014.694.004.82-.003 1.017-.055.565-.15.945-.62 1.027-1.268.002-.017.004-.227.005-.573.001-.222.004-.427.004-.748v-1.122a1728.895 1728.895 0 0 0 .002-2.82c-.001-2.128-.005-4.107-.012-4.168a1.374 1.374 0 0 0-.287-.73c-.238-.304-.636-.505-1.08-.544a30.103 30.103 0 0 0-1.23 0Zm6.06 0c-.537.034-.96.312-1.182.775a1.761 1.761 0 0 0-.16.56c-.003.03-.005.84-.006 2.4v2.294l.93-.802.002 1.138-.933.927c0 4 .001 3.447.027 3.58.08.414.298.728.65.934.197.116.452.195.7.217.108.01 1.052.01 1.21 0 .378-.023.674-.145.918-.379.247-.238.406-.589.445-.98.006-.068.007-4.6.004-7.313V4.652a64.866 64.866 0 0 0-.004-.867 1.642 1.642 0 0 0-.07-.37 1.298 1.298 0 0 0-.305-.516c-.225-.234-.52-.376-.913-.44-.06-.01-.15-.012-.646-.013-.318 0-.618.001-.667.004Zm-6.03.927a.636.636 0 0 0-.183.05c-.132.062-.222.203-.257.403-.01.06-.011.396-.01 4.686l.002 2.792v1.83l.016.053c.026.09.053.139.11.196a.368.368 0 0 0 .117.084l-.657.677.777.316.867-.879c.564-.002.446-.038.502-.053a.38.38 0 0 0 .2-.11.48.48 0 0 0 .121-.2c.02-.058 0-.412 0-.412s.887-.859.971-.976v-1.122l-.93.93.001-1.317V8.435c0-4.536 0-4.616-.013-4.68a.386.386 0 0 0-.115-.218.56.56 0 0 0-.282-.145c-.058-.016-.06-.016-.635-.017-.318 0-.588 0-.602.002Zm6.038.003a.415.415 0 0 0-.264.121.476.476 0 0 0-.122.2c-.034.097-.04-.115-.04 1.815a1188.363 1188.363 0 0 0 0 2.16l.002 1.139v4.336l.015.05c.026.084.054.13.11.186.074.073.16.116.299.148.05.012.094.012.645.012.665 0 .643.002.758-.051.131-.062.221-.202.256-.403.01-.06.011-.396.01-4.686V6.705l.928-.904V4.652l-.93.93V3.786l-.015-.054a.389.389 0 0 0-.111-.196.483.483 0 0 0-.21-.122c-.123-.042-.127-.042-.736-.04a17.2 17.2 0 0 0-.595.006Z",
|
|
12
|
+
clipRule: "evenodd"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
fillRule: "evenodd",
|
|
15
|
+
d: "M16.984 1.003a.418.418 0 0 0-.167.052c-.03.015-.223.202-2.383 2.36a4295.915 4295.915 0 0 0-2.95 2.947l-.93.93-1.381 1.38-.722.723-.93.93-2.973 2.97-2.971 2.971-.028.058a.469.469 0 0 0 .219.632.47.47 0 0 0 .451-.03c.025-.017.752-.74 2.792-2.778a8814.331 8814.331 0 0 0 3.438-3.436l1.395-1.394 1.64-1.641 2.095-2.095.929-.93c2.384-2.385 2.921-2.928 2.936-2.953a.395.395 0 0 0 .056-.236.39.39 0 0 0-.013-.133.51.51 0 0 0-.101-.175.455.455 0 0 0-.402-.152Z",
|
|
16
|
+
clipRule: "evenodd"
|
|
17
|
+
}));
|
|
18
|
+
}
|
|
19
|
+
module.exports = NoPauseIcon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function ViewOffIcon(props) {
|
|
3
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
4
|
+
viewBox: "0 0 19 18",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1em",
|
|
8
|
+
height: "1em"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M16.203 2.131a.455.455 0 0 0-.238.097c-.031.025-1.376 1.313-2.7 2.587l-.25.24-.035-.017a8.517 8.517 0 0 0-3.58-.782C8.187 4.254 6.9 4.591 5.567 5.26c-1.414.71-2.841 1.795-3.992 3.036-.206.222-.288.334-.372.506-.3.616-.198 1.333.262 1.847a14.623 14.623 0 0 0 3.032 2.58c0 .002-.43.416-.956.921-.637.612-.966.932-.984.959a.458.458 0 0 0-.081.299.463.463 0 0 0 .173.351c.09.076.188.11.315.11.113 0 .203-.029.285-.09.02-.016.54-.512 1.154-1.102.82-.787 1.127-1.078 1.155-1.093a.46.46 0 0 0 .168-.154c.037-.056.139-.156.951-.936.602-.577.927-.885.962-.908a.58.58 0 0 0 .145-.144c.022-.037 3.696-3.561 3.748-3.595a.506.506 0 0 0 .142-.135c.022-.03.31-.312.847-.827l.98-.94c.09-.089.823-.792 1.627-1.563.804-.77 1.48-1.423 1.504-1.45a.489.489 0 0 0-.427-.8ZM9.05 5.242c-.975.067-1.95.35-2.995.867-1.046.519-2.042 1.214-3.013 2.102-.265.242-.815.804-.905.924a.746.746 0 0 0-.105.215.53.53 0 0 0-.016.18.56.56 0 0 0 .062.3c.039.08.073.123.24.304.341.373.757.775 1.149 1.113.516.446 1.14.903 1.7 1.248l.057.035.02-.017a389.299 389.299 0 0 0 1.48-1.418c.014-.013.013-.016-.04-.127a3.21 3.21 0 0 1-.218-2.172 3.224 3.224 0 0 1 2.717-2.41c.283-.034.634-.029.908.015.351.056.72.18 1.014.34l.097.053.525-.504.525-.504-.06-.024a7.571 7.571 0 0 0-2.091-.499 8.665 8.665 0 0 0-1.05-.02Zm5.836 1.069a.511.511 0 0 0-.351.318.537.537 0 0 0-.01.275.481.481 0 0 0 .133.234c.013.011.1.079.195.15.397.3.715.563 1.073.89.277.253.842.83.937.957.04.053.084.142.104.21.02.07.027.222.014.3a.665.665 0 0 1-.122.29c-.05.065-.238.267-.447.479-1.658 1.684-3.68 2.89-5.49 3.273a6.238 6.238 0 0 1-1.382.144c-.71 0-1.295-.082-1.933-.271l-.14-.042h-.102a.368.368 0 0 0-.23.057.477.477 0 0 0-.235.304.552.552 0 0 0-.006.227.57.57 0 0 0 .16.268c.075.06.108.074.31.134.54.158 1.091.253 1.686.289.19.012.806.012.969 0a7.816 7.816 0 0 0 1.67-.296c1.12-.32 2.28-.896 3.402-1.688a14.97 14.97 0 0 0 2.023-1.719c.239-.243.454-.476.523-.568a1.66 1.66 0 0 0-.034-2.03c-.14-.174-.676-.724-.982-1.006a14.91 14.91 0 0 0-1.175-.978c-.19-.142-.223-.163-.295-.189a.587.587 0 0 0-.265-.012ZM9.422 7.344c-.731.061-1.37.451-1.749 1.07-.053.087-.15.284-.184.377a2.278 2.278 0 0 0-.007 1.56c.004.006.522-.487 1.488-1.414 1.42-1.362 1.481-1.423 1.465-1.431a2.422 2.422 0 0 0-.418-.125 2.573 2.573 0 0 0-.595-.037Zm2.654 1.706a.496.496 0 0 0-.386.354.935.935 0 0 0-.019.168 2.13 2.13 0 0 1-.215.9 2.14 2.14 0 0 1-.995 1.005c-.294.144-.54.207-.88.223-.182.009-.21.014-.293.054a.487.487 0 0 0 .108.915c.107.023.443.002.676-.04a3.16 3.16 0 0 0 2.353-1.934c.145-.368.216-.725.217-1.09.001-.156 0-.173-.015-.22a.506.506 0 0 0-.315-.317.61.61 0 0 0-.236-.018Z",
|
|
12
|
+
clipRule: "evenodd"
|
|
13
|
+
}));
|
|
14
|
+
}
|
|
15
|
+
module.exports = ViewOffIcon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function AddCircleIcon(props) {
|
|
3
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
4
|
+
viewBox: "0 0 19 18",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1em",
|
|
8
|
+
height: "1em"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M9.176.004A8.996 8.996 0 0 0 .96 6.147 8.826 8.826 0 0 0 .503 9c0 .428.011.64.051 1.005a8.987 8.987 0 0 0 3.654 6.278c.726.53 1.567.963 2.437 1.255a8.815 8.815 0 0 0 2.855.458c.428 0 .64-.01 1.004-.05a8.99 8.99 0 0 0 5.015-2.253c.126-.111.562-.548.674-.674a8.86 8.86 0 0 0 1.37-2.02 8.878 8.878 0 0 0 .93-3.652c0-.044.002-.073.007-.073.004 0 .007-.098.007-.278a1.92 1.92 0 0 0-.007-.273c-.005.003-.008-.022-.008-.07a8.987 8.987 0 0 0-1.349-4.409 8.851 8.851 0 0 0-1.134-1.458A8.85 8.85 0 0 0 13.5.936a8.86 8.86 0 0 0-3.416-.919C9.94.007 9.31-.002 9.176.004Zm-.087.99a8.006 8.006 0 0 0-4.172 1.427 8.246 8.246 0 0 0-1.673 1.567 8.012 8.012 0 0 0-1.531 3.1 8.161 8.161 0 0 0-.18 2.808 8.007 8.007 0 0 0 3.175 5.531 8.06 8.06 0 0 0 2.581 1.28 8.125 8.125 0 0 0 3.136.256 7.907 7.907 0 0 0 2.635-.78 7.853 7.853 0 0 0 2.106-1.516 7.852 7.852 0 0 0 1.516-2.107c.558-1.13.831-2.299.831-3.56a7.88 7.88 0 0 0-.831-3.56 7.844 7.844 0 0 0-1.515-2.107 7.844 7.844 0 0 0-2.107-1.515A7.9 7.9 0 0 0 9.885.994c-.173-.009-.62-.008-.796 0Zm.306 4.121a.506.506 0 0 0-.365.328l-.016.047-.004 1.508-.004 1.509-1.508.003-1.508.004-.047.016a.517.517 0 0 0-.315.315.38.38 0 0 0-.02.155.38.38 0 0 0 .02.155c.047.142.17.266.315.315l.047.016 1.508.004 1.508.003.004 1.509.004 1.508.016.047c.049.144.172.267.315.315a.38.38 0 0 0 .155.019.38.38 0 0 0 .154-.02.517.517 0 0 0 .316-.314l.016-.047.003-1.508.004-1.509L11.5 9.49l1.509-.004.046-.016a.518.518 0 0 0 .315-.315.38.38 0 0 0 .02-.155.38.38 0 0 0-.02-.155.518.518 0 0 0-.315-.315l-.046-.016L11.5 8.51l-1.508-.003-.004-1.509-.003-1.508-.016-.047a.514.514 0 0 0-.316-.314.597.597 0 0 0-.259-.014ZM.503 9.004c0 .154 0 .216.002.138V8.86c-.001-.076-.002-.012-.002.143Z",
|
|
12
|
+
clipRule: "evenodd"
|
|
13
|
+
}));
|
|
14
|
+
}
|
|
15
|
+
export default AddCircleIcon;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function InfoIcon(props) {
|
|
3
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
4
|
+
viewBox: "0 0 15 16",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1em",
|
|
8
|
+
height: "1em"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
10
|
+
clipPath: "url(#a)"
|
|
11
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
12
|
+
fillRule: "evenodd",
|
|
13
|
+
d: "M7.224.947a7.023 7.023 0 0 0-5.1 2.48 7.054 7.054 0 0 0-1.669 4.14c-.01.149-.01.715 0 .864a7.053 7.053 0 0 0 2.473 4.944 7.041 7.041 0 0 0 3.753 1.635c.29.033.462.042.82.042.356 0 .528-.01.818-.042a7.064 7.064 0 0 0 6.171-6.03c.048-.345.063-.576.063-.981 0-.357-.009-.53-.042-.82a7.045 7.045 0 0 0-2.439-4.557A7.053 7.053 0 0 0 7.944.955a16.433 16.433 0 0 0-.72-.008Zm.093.813a6.19 6.19 0 0 0-4.233 1.829 6.06 6.06 0 0 0-1.197 1.676 6.162 6.162 0 0 0-.609 2.209 6.217 6.217 0 0 0 2.187 5.29 6.227 6.227 0 0 0 4.716 1.441 6.227 6.227 0 0 0 4.083-2.171 6.226 6.226 0 0 0 1.455-4.59 6.214 6.214 0 0 0-.95-2.796 6.249 6.249 0 0 0-4.353-2.826 6.383 6.383 0 0 0-1.099-.062Zm-.15 2.739a.628.628 0 0 0-.166 1.18c.1.05.18.066.3.062a.538.538 0 0 0 .227-.048.656.656 0 0 0 .33-.335.632.632 0 0 0-.286-.796.644.644 0 0 0-.404-.063Zm-.606 2.21a.383.383 0 0 0-.234.117.375.375 0 0 0-.118.285c0 .075.015.139.047.198.03.054.113.135.167.163.084.044.078.043.38.047.26.003.272.003.28.015.008.01.01.176.01 1.149 0 .72.001 1.161.005 1.203a1.292 1.292 0 0 0 1.155 1.173c.03.003.182.006.34.006.322 0 .335-.002.42-.043a.326.326 0 0 0 .102-.077.357.357 0 0 0 .118-.302.394.394 0 0 0-.016-.112.428.428 0 0 0-.259-.26c-.037-.012-.053-.013-.336-.016-.34-.005-.346-.005-.45-.055a.328.328 0 0 1-.12-.088.434.434 0 0 1-.134-.242c-.009-.041-.01-.172-.01-1.19 0-.751-.002-1.163-.006-1.204a.846.846 0 0 0-.59-.73c-.11-.036-.142-.038-.442-.04-.15-.001-.29 0-.309.003Z",
|
|
14
|
+
clipRule: "evenodd"
|
|
15
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
16
|
+
id: "a"
|
|
17
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M0 0h15v15H0z",
|
|
19
|
+
transform: "translate(0 .5)"
|
|
20
|
+
}))));
|
|
21
|
+
}
|
|
22
|
+
export default InfoIcon;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function NoPauseIcon(props) {
|
|
3
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
4
|
+
viewBox: "0 0 19 18",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1em",
|
|
8
|
+
height: "1em"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M5.843 2.45c-.695.044-1.19.497-1.322 1.213a2.117 2.117 0 0 0-.021.145 1593.91 1593.91 0 0 0 0 9.336c.03.36.153.65.375.88.043.045.088.086.136.124l.777.316c.058.01.153.012.608.014.694.004.82-.003 1.017-.055.565-.15.945-.62 1.027-1.268.002-.017.004-.227.005-.573.001-.222.004-.427.004-.748v-1.122a1728.895 1728.895 0 0 0 .002-2.82c-.001-2.128-.005-4.107-.012-4.168a1.374 1.374 0 0 0-.287-.73c-.238-.304-.636-.505-1.08-.544a30.103 30.103 0 0 0-1.23 0Zm6.06 0c-.537.034-.96.312-1.182.775a1.761 1.761 0 0 0-.16.56c-.003.03-.005.84-.006 2.4v2.294l.93-.802.002 1.138-.933.927c0 4 .001 3.447.027 3.58.08.414.298.728.65.934.197.116.452.195.7.217.108.01 1.052.01 1.21 0 .378-.023.674-.145.918-.379.247-.238.406-.589.445-.98.006-.068.007-4.6.004-7.313V4.652a64.866 64.866 0 0 0-.004-.867 1.642 1.642 0 0 0-.07-.37 1.298 1.298 0 0 0-.305-.516c-.225-.234-.52-.376-.913-.44-.06-.01-.15-.012-.646-.013-.318 0-.618.001-.667.004Zm-6.03.927a.636.636 0 0 0-.183.05c-.132.062-.222.203-.257.403-.01.06-.011.396-.01 4.686l.002 2.792v1.83l.016.053c.026.09.053.139.11.196a.368.368 0 0 0 .117.084l-.657.677.777.316.867-.879c.564-.002.446-.038.502-.053a.38.38 0 0 0 .2-.11.48.48 0 0 0 .121-.2c.02-.058 0-.412 0-.412s.887-.859.971-.976v-1.122l-.93.93.001-1.317V8.435c0-4.536 0-4.616-.013-4.68a.386.386 0 0 0-.115-.218.56.56 0 0 0-.282-.145c-.058-.016-.06-.016-.635-.017-.318 0-.588 0-.602.002Zm6.038.003a.415.415 0 0 0-.264.121.476.476 0 0 0-.122.2c-.034.097-.04-.115-.04 1.815a1188.363 1188.363 0 0 0 0 2.16l.002 1.139v4.336l.015.05c.026.084.054.13.11.186.074.073.16.116.299.148.05.012.094.012.645.012.665 0 .643.002.758-.051.131-.062.221-.202.256-.403.01-.06.011-.396.01-4.686V6.705l.928-.904V4.652l-.93.93V3.786l-.015-.054a.389.389 0 0 0-.111-.196.483.483 0 0 0-.21-.122c-.123-.042-.127-.042-.736-.04a17.2 17.2 0 0 0-.595.006Z",
|
|
12
|
+
clipRule: "evenodd"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
fillRule: "evenodd",
|
|
15
|
+
d: "M16.984 1.003a.418.418 0 0 0-.167.052c-.03.015-.223.202-2.383 2.36a4295.915 4295.915 0 0 0-2.95 2.947l-.93.93-1.381 1.38-.722.723-.93.93-2.973 2.97-2.971 2.971-.028.058a.469.469 0 0 0 .219.632.47.47 0 0 0 .451-.03c.025-.017.752-.74 2.792-2.778a8814.331 8814.331 0 0 0 3.438-3.436l1.395-1.394 1.64-1.641 2.095-2.095.929-.93c2.384-2.385 2.921-2.928 2.936-2.953a.395.395 0 0 0 .056-.236.39.39 0 0 0-.013-.133.51.51 0 0 0-.101-.175.455.455 0 0 0-.402-.152Z",
|
|
16
|
+
clipRule: "evenodd"
|
|
17
|
+
}));
|
|
18
|
+
}
|
|
19
|
+
export default NoPauseIcon;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function ViewOffIcon(props) {
|
|
3
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
4
|
+
viewBox: "0 0 19 18",
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1em",
|
|
8
|
+
height: "1em"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
fillRule: "evenodd",
|
|
11
|
+
d: "M16.203 2.131a.455.455 0 0 0-.238.097c-.031.025-1.376 1.313-2.7 2.587l-.25.24-.035-.017a8.517 8.517 0 0 0-3.58-.782C8.187 4.254 6.9 4.591 5.567 5.26c-1.414.71-2.841 1.795-3.992 3.036-.206.222-.288.334-.372.506-.3.616-.198 1.333.262 1.847a14.623 14.623 0 0 0 3.032 2.58c0 .002-.43.416-.956.921-.637.612-.966.932-.984.959a.458.458 0 0 0-.081.299.463.463 0 0 0 .173.351c.09.076.188.11.315.11.113 0 .203-.029.285-.09.02-.016.54-.512 1.154-1.102.82-.787 1.127-1.078 1.155-1.093a.46.46 0 0 0 .168-.154c.037-.056.139-.156.951-.936.602-.577.927-.885.962-.908a.58.58 0 0 0 .145-.144c.022-.037 3.696-3.561 3.748-3.595a.506.506 0 0 0 .142-.135c.022-.03.31-.312.847-.827l.98-.94c.09-.089.823-.792 1.627-1.563.804-.77 1.48-1.423 1.504-1.45a.489.489 0 0 0-.427-.8ZM9.05 5.242c-.975.067-1.95.35-2.995.867-1.046.519-2.042 1.214-3.013 2.102-.265.242-.815.804-.905.924a.746.746 0 0 0-.105.215.53.53 0 0 0-.016.18.56.56 0 0 0 .062.3c.039.08.073.123.24.304.341.373.757.775 1.149 1.113.516.446 1.14.903 1.7 1.248l.057.035.02-.017a389.299 389.299 0 0 0 1.48-1.418c.014-.013.013-.016-.04-.127a3.21 3.21 0 0 1-.218-2.172 3.224 3.224 0 0 1 2.717-2.41c.283-.034.634-.029.908.015.351.056.72.18 1.014.34l.097.053.525-.504.525-.504-.06-.024a7.571 7.571 0 0 0-2.091-.499 8.665 8.665 0 0 0-1.05-.02Zm5.836 1.069a.511.511 0 0 0-.351.318.537.537 0 0 0-.01.275.481.481 0 0 0 .133.234c.013.011.1.079.195.15.397.3.715.563 1.073.89.277.253.842.83.937.957.04.053.084.142.104.21.02.07.027.222.014.3a.665.665 0 0 1-.122.29c-.05.065-.238.267-.447.479-1.658 1.684-3.68 2.89-5.49 3.273a6.238 6.238 0 0 1-1.382.144c-.71 0-1.295-.082-1.933-.271l-.14-.042h-.102a.368.368 0 0 0-.23.057.477.477 0 0 0-.235.304.552.552 0 0 0-.006.227.57.57 0 0 0 .16.268c.075.06.108.074.31.134.54.158 1.091.253 1.686.289.19.012.806.012.969 0a7.816 7.816 0 0 0 1.67-.296c1.12-.32 2.28-.896 3.402-1.688a14.97 14.97 0 0 0 2.023-1.719c.239-.243.454-.476.523-.568a1.66 1.66 0 0 0-.034-2.03c-.14-.174-.676-.724-.982-1.006a14.91 14.91 0 0 0-1.175-.978c-.19-.142-.223-.163-.295-.189a.587.587 0 0 0-.265-.012ZM9.422 7.344c-.731.061-1.37.451-1.749 1.07-.053.087-.15.284-.184.377a2.278 2.278 0 0 0-.007 1.56c.004.006.522-.487 1.488-1.414 1.42-1.362 1.481-1.423 1.465-1.431a2.422 2.422 0 0 0-.418-.125 2.573 2.573 0 0 0-.595-.037Zm2.654 1.706a.496.496 0 0 0-.386.354.935.935 0 0 0-.019.168 2.13 2.13 0 0 1-.215.9 2.14 2.14 0 0 1-.995 1.005c-.294.144-.54.207-.88.223-.182.009-.21.014-.293.054a.487.487 0 0 0 .108.915c.107.023.443.002.676-.04a3.16 3.16 0 0 0 2.353-1.934c.145-.368.216-.725.217-1.09.001-.156 0-.173-.015-.22a.506.506 0 0 0-.315-.317.61.61 0 0 0-.236-.018Z",
|
|
12
|
+
clipRule: "evenodd"
|
|
13
|
+
}));
|
|
14
|
+
}
|
|
15
|
+
export default ViewOffIcon;
|
package/solid/esm/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as ActivitiesIcon } from './ActivitiesIcon'
|
|
2
|
+
export { default as AddCircleIcon } from './AddCircleIcon'
|
|
2
3
|
export { default as AddCommentIcon } from './AddCommentIcon'
|
|
3
4
|
export { default as AlertInformationCircleIcon } from './AlertInformationCircleIcon'
|
|
4
5
|
export { default as AlertWarningTriangleIcon } from './AlertWarningTriangleIcon'
|
|
@@ -81,6 +82,7 @@ export { default as FlagIcon } from './FlagIcon'
|
|
|
81
82
|
export { default as GithubIcon } from './GithubIcon'
|
|
82
83
|
export { default as GraduationHatIcon } from './GraduationHatIcon'
|
|
83
84
|
export { default as HalfStarAlternateIcon } from './HalfStarAlternateIcon'
|
|
85
|
+
export { default as InfoIcon } from './InfoIcon'
|
|
84
86
|
export { default as InstagramIcon } from './InstagramIcon'
|
|
85
87
|
export { default as JumpingPersonIcon } from './JumpingPersonIcon'
|
|
86
88
|
export { default as KeyboardReturnIcon } from './KeyboardReturnIcon'
|
|
@@ -100,6 +102,7 @@ export { default as MicrophoneIcon } from './MicrophoneIcon'
|
|
|
100
102
|
export { default as MoveToTopIcon } from './MoveToTopIcon'
|
|
101
103
|
export { default as MusicNoteIcon } from './MusicNoteIcon'
|
|
102
104
|
export { default as NavigationMenuIcon } from './NavigationMenuIcon'
|
|
105
|
+
export { default as NoPauseIcon } from './NoPauseIcon'
|
|
103
106
|
export { default as NonEvaluableIcon } from './NonEvaluableIcon'
|
|
104
107
|
export { default as ParagraphSpacingIcon } from './ParagraphSpacingIcon'
|
|
105
108
|
export { default as PassportIcon } from './PassportIcon'
|
|
@@ -159,6 +162,7 @@ export { default as TwitterIcon } from './TwitterIcon'
|
|
|
159
162
|
export { default as UnlockIcon } from './UnlockIcon'
|
|
160
163
|
export { default as UserGroupIcon } from './UserGroupIcon'
|
|
161
164
|
export { default as VideoEditCcTitlesIcon } from './VideoEditCcTitlesIcon'
|
|
165
|
+
export { default as ViewOffIcon } from './ViewOffIcon'
|
|
162
166
|
export { default as VolumeControlDownIcon } from './VolumeControlDownIcon'
|
|
163
167
|
export { default as VolumeControlFullIcon } from './VolumeControlFullIcon'
|
|
164
168
|
export { default as VolumeControlLowIcon } from './VolumeControlLowIcon'
|
package/solid/esm/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as ActivitiesIcon } from './ActivitiesIcon.js'
|
|
2
|
+
export { default as AddCircleIcon } from './AddCircleIcon.js'
|
|
2
3
|
export { default as AddCommentIcon } from './AddCommentIcon.js'
|
|
3
4
|
export { default as AlertInformationCircleIcon } from './AlertInformationCircleIcon.js'
|
|
4
5
|
export { default as AlertWarningTriangleIcon } from './AlertWarningTriangleIcon.js'
|
|
@@ -81,6 +82,7 @@ export { default as FlagIcon } from './FlagIcon.js'
|
|
|
81
82
|
export { default as GithubIcon } from './GithubIcon.js'
|
|
82
83
|
export { default as GraduationHatIcon } from './GraduationHatIcon.js'
|
|
83
84
|
export { default as HalfStarAlternateIcon } from './HalfStarAlternateIcon.js'
|
|
85
|
+
export { default as InfoIcon } from './InfoIcon.js'
|
|
84
86
|
export { default as InstagramIcon } from './InstagramIcon.js'
|
|
85
87
|
export { default as JumpingPersonIcon } from './JumpingPersonIcon.js'
|
|
86
88
|
export { default as KeyboardReturnIcon } from './KeyboardReturnIcon.js'
|
|
@@ -100,6 +102,7 @@ export { default as MicrophoneIcon } from './MicrophoneIcon.js'
|
|
|
100
102
|
export { default as MoveToTopIcon } from './MoveToTopIcon.js'
|
|
101
103
|
export { default as MusicNoteIcon } from './MusicNoteIcon.js'
|
|
102
104
|
export { default as NavigationMenuIcon } from './NavigationMenuIcon.js'
|
|
105
|
+
export { default as NoPauseIcon } from './NoPauseIcon.js'
|
|
103
106
|
export { default as NonEvaluableIcon } from './NonEvaluableIcon.js'
|
|
104
107
|
export { default as ParagraphSpacingIcon } from './ParagraphSpacingIcon.js'
|
|
105
108
|
export { default as PassportIcon } from './PassportIcon.js'
|
|
@@ -159,6 +162,7 @@ export { default as TwitterIcon } from './TwitterIcon.js'
|
|
|
159
162
|
export { default as UnlockIcon } from './UnlockIcon.js'
|
|
160
163
|
export { default as UserGroupIcon } from './UserGroupIcon.js'
|
|
161
164
|
export { default as VideoEditCcTitlesIcon } from './VideoEditCcTitlesIcon.js'
|
|
165
|
+
export { default as ViewOffIcon } from './ViewOffIcon.js'
|
|
162
166
|
export { default as VolumeControlDownIcon } from './VolumeControlDownIcon.js'
|
|
163
167
|
export { default as VolumeControlFullIcon } from './VolumeControlFullIcon.js'
|
|
164
168
|
export { default as VolumeControlLowIcon } from './VolumeControlLowIcon.js'
|
package/solid/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as ActivitiesIcon } from './ActivitiesIcon'
|
|
2
|
+
export { default as AddCircleIcon } from './AddCircleIcon'
|
|
2
3
|
export { default as AddCommentIcon } from './AddCommentIcon'
|
|
3
4
|
export { default as AlertInformationCircleIcon } from './AlertInformationCircleIcon'
|
|
4
5
|
export { default as AlertWarningTriangleIcon } from './AlertWarningTriangleIcon'
|
|
@@ -81,6 +82,7 @@ export { default as FlagIcon } from './FlagIcon'
|
|
|
81
82
|
export { default as GithubIcon } from './GithubIcon'
|
|
82
83
|
export { default as GraduationHatIcon } from './GraduationHatIcon'
|
|
83
84
|
export { default as HalfStarAlternateIcon } from './HalfStarAlternateIcon'
|
|
85
|
+
export { default as InfoIcon } from './InfoIcon'
|
|
84
86
|
export { default as InstagramIcon } from './InstagramIcon'
|
|
85
87
|
export { default as JumpingPersonIcon } from './JumpingPersonIcon'
|
|
86
88
|
export { default as KeyboardReturnIcon } from './KeyboardReturnIcon'
|
|
@@ -100,6 +102,7 @@ export { default as MicrophoneIcon } from './MicrophoneIcon'
|
|
|
100
102
|
export { default as MoveToTopIcon } from './MoveToTopIcon'
|
|
101
103
|
export { default as MusicNoteIcon } from './MusicNoteIcon'
|
|
102
104
|
export { default as NavigationMenuIcon } from './NavigationMenuIcon'
|
|
105
|
+
export { default as NoPauseIcon } from './NoPauseIcon'
|
|
103
106
|
export { default as NonEvaluableIcon } from './NonEvaluableIcon'
|
|
104
107
|
export { default as ParagraphSpacingIcon } from './ParagraphSpacingIcon'
|
|
105
108
|
export { default as PassportIcon } from './PassportIcon'
|
|
@@ -159,6 +162,7 @@ export { default as TwitterIcon } from './TwitterIcon'
|
|
|
159
162
|
export { default as UnlockIcon } from './UnlockIcon'
|
|
160
163
|
export { default as UserGroupIcon } from './UserGroupIcon'
|
|
161
164
|
export { default as VideoEditCcTitlesIcon } from './VideoEditCcTitlesIcon'
|
|
165
|
+
export { default as ViewOffIcon } from './ViewOffIcon'
|
|
162
166
|
export { default as VolumeControlDownIcon } from './VolumeControlDownIcon'
|
|
163
167
|
export { default as VolumeControlFullIcon } from './VolumeControlFullIcon'
|
|
164
168
|
export { default as VolumeControlLowIcon } from './VolumeControlLowIcon'
|
package/solid/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
module.exports.ActivitiesIcon = require("./ActivitiesIcon.js")
|
|
2
|
+
module.exports.AddCircleIcon = require("./AddCircleIcon.js")
|
|
2
3
|
module.exports.AddCommentIcon = require("./AddCommentIcon.js")
|
|
3
4
|
module.exports.AlertInformationCircleIcon = require("./AlertInformationCircleIcon.js")
|
|
4
5
|
module.exports.AlertWarningTriangleIcon = require("./AlertWarningTriangleIcon.js")
|
|
@@ -81,6 +82,7 @@ module.exports.FlagIcon = require("./FlagIcon.js")
|
|
|
81
82
|
module.exports.GithubIcon = require("./GithubIcon.js")
|
|
82
83
|
module.exports.GraduationHatIcon = require("./GraduationHatIcon.js")
|
|
83
84
|
module.exports.HalfStarAlternateIcon = require("./HalfStarAlternateIcon.js")
|
|
85
|
+
module.exports.InfoIcon = require("./InfoIcon.js")
|
|
84
86
|
module.exports.InstagramIcon = require("./InstagramIcon.js")
|
|
85
87
|
module.exports.JumpingPersonIcon = require("./JumpingPersonIcon.js")
|
|
86
88
|
module.exports.KeyboardReturnIcon = require("./KeyboardReturnIcon.js")
|
|
@@ -100,6 +102,7 @@ module.exports.MicrophoneIcon = require("./MicrophoneIcon.js")
|
|
|
100
102
|
module.exports.MoveToTopIcon = require("./MoveToTopIcon.js")
|
|
101
103
|
module.exports.MusicNoteIcon = require("./MusicNoteIcon.js")
|
|
102
104
|
module.exports.NavigationMenuIcon = require("./NavigationMenuIcon.js")
|
|
105
|
+
module.exports.NoPauseIcon = require("./NoPauseIcon.js")
|
|
103
106
|
module.exports.NonEvaluableIcon = require("./NonEvaluableIcon.js")
|
|
104
107
|
module.exports.ParagraphSpacingIcon = require("./ParagraphSpacingIcon.js")
|
|
105
108
|
module.exports.PassportIcon = require("./PassportIcon.js")
|
|
@@ -159,6 +162,7 @@ module.exports.TwitterIcon = require("./TwitterIcon.js")
|
|
|
159
162
|
module.exports.UnlockIcon = require("./UnlockIcon.js")
|
|
160
163
|
module.exports.UserGroupIcon = require("./UserGroupIcon.js")
|
|
161
164
|
module.exports.VideoEditCcTitlesIcon = require("./VideoEditCcTitlesIcon.js")
|
|
165
|
+
module.exports.ViewOffIcon = require("./ViewOffIcon.js")
|
|
162
166
|
module.exports.VolumeControlDownIcon = require("./VolumeControlDownIcon.js")
|
|
163
167
|
module.exports.VolumeControlFullIcon = require("./VolumeControlFullIcon.js")
|
|
164
168
|
module.exports.VolumeControlLowIcon = require("./VolumeControlLowIcon.js")
|