@central-icons-react-native/round-outlined-radius-2-stroke-1 1.1.71 → 1.1.73
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/IconRemix/index.d.ts +4 -0
- package/IconRemix/index.js +2 -0
- package/IconRemix/index.js.map +1 -0
- package/IconRemix/index.mjs +2 -0
- package/IconRemix/index.mjs.map +1 -0
- package/IconVoiceMode/index.d.ts +4 -0
- package/IconVoiceMode/index.js +2 -0
- package/IconVoiceMode/index.js.map +1 -0
- package/IconVoiceMode/index.mjs +2 -0
- package/IconVoiceMode/index.mjs.map +1 -0
- package/IconVoiceSettings/index.d.ts +4 -0
- package/IconVoiceSettings/index.js +2 -0
- package/IconVoiceSettings/index.js.map +1 -0
- package/IconVoiceSettings/index.mjs +2 -0
- package/IconVoiceSettings/index.mjs.map +1 -0
- package/README.md +3 -0
- package/filtered-icons.json +42 -0
- package/icons/index.d.ts +3 -0
- package/icons-index.json +10 -4
- package/index.d.ts +3 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +21 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var p=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},u=(r,o,n,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of m(o))!x.call(r,s)&&s!==n&&p(r,s,{get:()=>o[s],enumerable:!(i=L(o,s))||i.enumerable});return r};var d=(r,o,n)=>(n=r!=null?l(f(r)):{},u(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),I=r=>u(p({},"__esModule",{value:!0}),r);var g={};B(g,{IconRemix:()=>c,default:()=>P});module.exports=I(g);var e=d(require("react"));var C=d(require("react")),k=require("react-native-svg"),a=({children:r,size:o=24,...n})=>C.default.createElement(k.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),c=r=>e.default.createElement(a,{...r},e.default.createElement(t.Path,{d:"M3.5 14V6.5C3.5 5.39543 4.39543 4.5 5.5 4.5H20",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M17.75 1.75L20.5 4.5L17.75 7.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M6.25 22.25L3.5 19.5L6.25 16.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M4 19.5H18.5C19.6046 19.5 20.5 18.6046 20.5 17.5V10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M12 8V16",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M8 12H16",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),P=c;0&&(module.exports={IconRemix});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRemix/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconRemix: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.5 14V6.5C3.5 5.39543 4.39543 4.5 5.5 4.5H20\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.75 1.75L20.5 4.5L17.75 7.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.25 22.25L3.5 19.5L6.25 16.75\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4 19.5H18.5C19.6046 19.5 20.5 18.6046 20.5 17.5V10\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 8V16\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 12H16\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRemix;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,eAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAuCC,GAEhD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kCACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kCACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconRemix_exports","__export","IconRemix","IconRemix_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconRemix","props","React","CentralIconBase","IconRemix_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import p from"react";import{Svg as i}from"react-native-svg";var t=({children:e,size:o=24,...s})=>p.createElement(i,{...s,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var u=e=>r.createElement(t,{...e},r.createElement(n,{d:"M3.5 14V6.5C3.5 5.39543 4.39543 4.5 5.5 4.5H20",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M17.75 1.75L20.5 4.5L17.75 7.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M6.25 22.25L3.5 19.5L6.25 16.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M4 19.5H18.5C19.6046 19.5 20.5 18.6046 20.5 17.5V10",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M12 8V16",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M8 12H16",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),x=u;export{u as IconRemix,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRemix/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconRemix: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.5 14V6.5C3.5 5.39543 4.39543 4.5 5.5 4.5H20\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.75 1.75L20.5 4.5L17.75 7.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.25 22.25L3.5 19.5L6.25 16.75\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4 19.5H18.5C19.6046 19.5 20.5 18.6046 20.5 17.5V10\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 8V16\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 12H16\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRemix;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAuCC,GAEhDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kCACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kCACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sDACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconRemix","props","React","CentralIconBase","IconRemix_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var C=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!P.call(r,t)&&t!==e&&C(r,t,{get:()=>o[t],enumerable:!(s=x(o,t))||s.enumerable});return r};var c=(r,o,e)=>(e=r!=null?f(I(r)):{},a(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>a(C({},"__esModule",{value:!0}),r);var k={};d(k,{IconVoiceMode:()=>u,default:()=>M});module.exports=g(k);var n=c(require("react"));var l=c(require("react")),m=require("react-native-svg"),i=({children:r,size:o=24,...e})=>l.default.createElement(m.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),u=r=>n.default.createElement(i,{...r},n.default.createElement(p.Path,{d:"M21.5 8.5V11.5M18.5 3.5V16.5M15.5 6.65625V10M12.5 4.5V8.625",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),n.default.createElement(p.Circle,{cx:"6.5",cy:"15.5",r:"2",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M11.5 11.5H6.5C4.29086 11.5 2.5 13.2909 2.5 15.5C2.5 17.7091 4.29086 19.5 6.5 19.5H11.5C13.7091 19.5 15.5 17.7091 15.5 15.5C15.5 13.2909 13.7091 11.5 11.5 11.5Z",stroke:"currentColor"})),M=u;0&&(module.exports={IconVoiceMode});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceMode/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconVoiceMode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.5 8.5V11.5M18.5 3.5V16.5M15.5 6.65625V10M12.5 4.5V8.625\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <Circle cx=\"6.5\" cy=\"15.5\" r=\"2\" stroke=\"currentColor\" />\n <Path\n d=\"M11.5 11.5H6.5C4.29086 11.5 2.5 13.2909 2.5 15.5C2.5 17.7091 4.29086 19.5 6.5 19.5H11.5C13.7091 19.5 15.5 17.7091 15.5 15.5C15.5 13.2909 13.7091 11.5 11.5 11.5Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceMode;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,mBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAA6B,4BAEhBC,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,8DACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,MAAM,GAAG,OAAO,EAAE,IAAI,OAAO,eAAe,EACvD,EAAAA,QAAA,cAAC,QACC,EAAE,mKACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconVoiceMode_exports","__export","IconVoiceMode","IconVoiceMode_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVoiceMode","props","React","CentralIconBase","IconVoiceMode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import C from"react";import{Svg as s}from"react-native-svg";var t=({children:e,size:r=24,...p})=>C.createElement(s,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Circle as a,Path as n}from"react-native-svg";var c=e=>o.createElement(t,{...e},o.createElement(n,{d:"M21.5 8.5V11.5M18.5 3.5V16.5M15.5 6.65625V10M12.5 4.5V8.625",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),o.createElement(a,{cx:"6.5",cy:"15.5",r:"2",stroke:"currentColor"}),o.createElement(n,{d:"M11.5 11.5H6.5C4.29086 11.5 2.5 13.2909 2.5 15.5C2.5 17.7091 4.29086 19.5 6.5 19.5H11.5C13.7091 19.5 15.5 17.7091 15.5 15.5C15.5 13.2909 13.7091 11.5 11.5 11.5Z",stroke:"currentColor"})),d=c;export{c as IconVoiceMode,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceMode/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconVoiceMode: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.5 8.5V11.5M18.5 3.5V16.5M15.5 6.65625V10M12.5 4.5V8.625\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <Circle cx=\"6.5\" cy=\"15.5\" r=\"2\" stroke=\"currentColor\" />\n <Path\n d=\"M11.5 11.5H6.5C4.29086 11.5 2.5 13.2909 2.5 15.5C2.5 17.7091 4.29086 19.5 6.5 19.5H11.5C13.7091 19.5 15.5 17.7091 15.5 15.5C15.5 13.2909 13.7091 11.5 11.5 11.5Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceMode;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,8DACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,MAAM,GAAG,OAAO,EAAE,IAAI,OAAO,eAAe,EACvDI,EAAA,cAACH,EAAA,CACC,EAAE,mKACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconVoiceMode","props","React","CentralIconBase","IconVoiceMode_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},L=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of x(o))!I.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(s=f(o,t))||s.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(B(r)):{},L(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>L(p({},"__esModule",{value:!0}),r);var d={};g(d,{IconVoiceSettings:()=>m,default:()=>k});module.exports=P(d);var n=a(require("react"));var c=a(require("react")),l=require("react-native-svg"),i=({children:r,size:o=24,...e})=>c.default.createElement(l.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),m=r=>n.default.createElement(i,{...r},n.default.createElement(C.Path,{d:"M7.85418 10C7.50099 10 7.17399 10.1863 6.99391 10.4901L6.37145 11.5404C6.19284 11.8418 5.86956 12.0277 5.51926 12.0305L4.28537 12.0405C3.93216 12.0433 3.60665 12.2323 3.42904 12.5376L3.03976 13.2068C2.86041 13.5151 2.85886 13.8956 3.03568 14.2054L3.63441 15.2543C3.80979 15.5615 3.80979 15.9385 3.63441 16.2458L3.03568 17.2946C2.85886 17.6044 2.86041 17.9849 3.03976 18.2932L3.42904 18.9624C3.60665 19.2677 3.93216 19.4567 4.28537 19.4595L5.51926 19.4695C5.86957 19.4723 6.19285 19.6582 6.37146 19.9596L6.99391 21.0099C7.17399 21.3137 7.50098 21.5 7.85417 21.5H8.64577C8.99896 21.5 9.32596 21.3137 9.50603 21.0099L10.1285 19.9596C10.3071 19.6582 10.6304 19.4723 10.9807 19.4695L12.2146 19.4595C12.5678 19.4567 12.8933 19.2677 13.071 18.9624L13.4602 18.2932C13.6396 17.9849 13.6411 17.6044 13.4643 17.2946L12.8656 16.2458C12.6902 15.9385 12.6902 15.5615 12.8656 15.2543L13.4643 14.2054C13.6411 13.8956 13.6396 13.5151 13.4602 13.2068L13.071 12.5376C12.8933 12.2323 12.5678 12.0433 12.2146 12.0405L10.9807 12.0305C10.6304 12.0277 10.3071 11.8418 10.1285 11.5404L9.50604 10.4901C9.32596 10.1863 8.99896 10 8.64577 10H7.85418Z",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement(C.Circle,{cx:"8.25",cy:"15.75",r:"1.75",stroke:"currentColor"}),n.default.createElement(C.Path,{d:"M21.5 7.70833V10.7917M18.5 2.5V16M15.5 6.625V10M12.5 4.54167V8.5",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"})),k=m;0&&(module.exports={IconVoiceSettings});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceSettings/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconVoiceSettings: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.85418 10C7.50099 10 7.17399 10.1863 6.99391 10.4901L6.37145 11.5404C6.19284 11.8418 5.86956 12.0277 5.51926 12.0305L4.28537 12.0405C3.93216 12.0433 3.60665 12.2323 3.42904 12.5376L3.03976 13.2068C2.86041 13.5151 2.85886 13.8956 3.03568 14.2054L3.63441 15.2543C3.80979 15.5615 3.80979 15.9385 3.63441 16.2458L3.03568 17.2946C2.85886 17.6044 2.86041 17.9849 3.03976 18.2932L3.42904 18.9624C3.60665 19.2677 3.93216 19.4567 4.28537 19.4595L5.51926 19.4695C5.86957 19.4723 6.19285 19.6582 6.37146 19.9596L6.99391 21.0099C7.17399 21.3137 7.50098 21.5 7.85417 21.5H8.64577C8.99896 21.5 9.32596 21.3137 9.50603 21.0099L10.1285 19.9596C10.3071 19.6582 10.6304 19.4723 10.9807 19.4695L12.2146 19.4595C12.5678 19.4567 12.8933 19.2677 13.071 18.9624L13.4602 18.2932C13.6396 17.9849 13.6411 17.6044 13.4643 17.2946L12.8656 16.2458C12.6902 15.9385 12.6902 15.5615 12.8656 15.2543L13.4643 14.2054C13.6411 13.8956 13.6396 13.5151 13.4602 13.2068L13.071 12.5376C12.8933 12.2323 12.5678 12.0433 12.2146 12.0405L10.9807 12.0305C10.6304 12.0277 10.3071 11.8418 10.1285 11.5404L9.50604 10.4901C9.32596 10.1863 8.99896 10 8.64577 10H7.85418Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Circle cx=\"8.25\" cy=\"15.75\" r=\"1.75\" stroke=\"currentColor\" />\n <Path\n d=\"M21.5 7.70833V10.7917M18.5 2.5V16M15.5 6.625V10M12.5 4.54167V8.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceSettings;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,uBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAA6B,4BAEhBC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,qmCACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,OAAO,GAAG,QAAQ,EAAE,OAAO,OAAO,eAAe,EAC5D,EAAAA,QAAA,cAAC,QACC,EAAE,mEACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconVoiceSettings_exports","__export","IconVoiceSettings","IconVoiceSettings_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVoiceSettings","props","React","CentralIconBase","IconVoiceSettings_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as s}from"react-native-svg";var t=({children:e,size:r=24,...C})=>p.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Circle as L,Path as n}from"react-native-svg";var a=e=>o.createElement(t,{...e},o.createElement(n,{d:"M7.85418 10C7.50099 10 7.17399 10.1863 6.99391 10.4901L6.37145 11.5404C6.19284 11.8418 5.86956 12.0277 5.51926 12.0305L4.28537 12.0405C3.93216 12.0433 3.60665 12.2323 3.42904 12.5376L3.03976 13.2068C2.86041 13.5151 2.85886 13.8956 3.03568 14.2054L3.63441 15.2543C3.80979 15.5615 3.80979 15.9385 3.63441 16.2458L3.03568 17.2946C2.85886 17.6044 2.86041 17.9849 3.03976 18.2932L3.42904 18.9624C3.60665 19.2677 3.93216 19.4567 4.28537 19.4595L5.51926 19.4695C5.86957 19.4723 6.19285 19.6582 6.37146 19.9596L6.99391 21.0099C7.17399 21.3137 7.50098 21.5 7.85417 21.5H8.64577C8.99896 21.5 9.32596 21.3137 9.50603 21.0099L10.1285 19.9596C10.3071 19.6582 10.6304 19.4723 10.9807 19.4695L12.2146 19.4595C12.5678 19.4567 12.8933 19.2677 13.071 18.9624L13.4602 18.2932C13.6396 17.9849 13.6411 17.6044 13.4643 17.2946L12.8656 16.2458C12.6902 15.9385 12.6902 15.5615 12.8656 15.2543L13.4643 14.2054C13.6411 13.8956 13.6396 13.5151 13.4602 13.2068L13.071 12.5376C12.8933 12.2323 12.5678 12.0433 12.2146 12.0405L10.9807 12.0305C10.6304 12.0277 10.3071 11.8418 10.1285 11.5404L9.50604 10.4901C9.32596 10.1863 8.99896 10 8.64577 10H7.85418Z",stroke:"currentColor",strokeLinecap:"square"}),o.createElement(L,{cx:"8.25",cy:"15.75",r:"1.75",stroke:"currentColor"}),o.createElement(n,{d:"M21.5 7.70833V10.7917M18.5 2.5V16M15.5 6.625V10M12.5 4.54167V8.5",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"})),g=a;export{a as IconVoiceSettings,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceSettings/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconVoiceSettings: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.85418 10C7.50099 10 7.17399 10.1863 6.99391 10.4901L6.37145 11.5404C6.19284 11.8418 5.86956 12.0277 5.51926 12.0305L4.28537 12.0405C3.93216 12.0433 3.60665 12.2323 3.42904 12.5376L3.03976 13.2068C2.86041 13.5151 2.85886 13.8956 3.03568 14.2054L3.63441 15.2543C3.80979 15.5615 3.80979 15.9385 3.63441 16.2458L3.03568 17.2946C2.85886 17.6044 2.86041 17.9849 3.03976 18.2932L3.42904 18.9624C3.60665 19.2677 3.93216 19.4567 4.28537 19.4595L5.51926 19.4695C5.86957 19.4723 6.19285 19.6582 6.37146 19.9596L6.99391 21.0099C7.17399 21.3137 7.50098 21.5 7.85417 21.5H8.64577C8.99896 21.5 9.32596 21.3137 9.50603 21.0099L10.1285 19.9596C10.3071 19.6582 10.6304 19.4723 10.9807 19.4695L12.2146 19.4595C12.5678 19.4567 12.8933 19.2677 13.071 18.9624L13.4602 18.2932C13.6396 17.9849 13.6411 17.6044 13.4643 17.2946L12.8656 16.2458C12.6902 15.9385 12.6902 15.5615 12.8656 15.2543L13.4643 14.2054C13.6411 13.8956 13.6396 13.5151 13.4602 13.2068L13.071 12.5376C12.8933 12.2323 12.5678 12.0433 12.2146 12.0405L10.9807 12.0305C10.6304 12.0277 10.3071 11.8418 10.1285 11.5404L9.50604 10.4901C9.32596 10.1863 8.99896 10 8.64577 10H7.85418Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Circle cx=\"8.25\" cy=\"15.75\" r=\"1.75\" stroke=\"currentColor\" />\n <Path\n d=\"M21.5 7.70833V10.7917M18.5 2.5V16M15.5 6.625V10M12.5 4.54167V8.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceSettings;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,qmCACF,OAAO,eACP,cAAc,SAChB,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,OAAO,GAAG,QAAQ,EAAE,OAAO,OAAO,eAAe,EAC5DI,EAAA,cAACH,EAAA,CACC,EAAE,mEACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconVoiceSettings","props","React","CentralIconBase","IconVoiceSettings_default"]}
|
package/README.md
CHANGED
|
@@ -330,6 +330,7 @@ Below is a complete list of available icons:
|
|
|
330
330
|
- IconMinimize45
|
|
331
331
|
- IconOngoing
|
|
332
332
|
- IconRandom
|
|
333
|
+
- IconRemix
|
|
333
334
|
- IconRotate360Left
|
|
334
335
|
- IconRotate360Right
|
|
335
336
|
- IconShareArrowDown
|
|
@@ -1555,7 +1556,9 @@ Below is a complete list of available icons:
|
|
|
1555
1556
|
- IconVocalMicrophone
|
|
1556
1557
|
- IconVoice1
|
|
1557
1558
|
- IconVoice3
|
|
1559
|
+
- IconVoiceMode
|
|
1558
1560
|
- IconVoiceRecord
|
|
1561
|
+
- IconVoiceSettings
|
|
1559
1562
|
- IconVolumeDown
|
|
1560
1563
|
- IconVolumeFull
|
|
1561
1564
|
- IconVolumeHalf
|
package/filtered-icons.json
CHANGED
|
@@ -17038,6 +17038,20 @@
|
|
|
17038
17038
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
17039
17039
|
"componentName": "IconReddit"
|
|
17040
17040
|
},
|
|
17041
|
+
{
|
|
17042
|
+
"category": "Arrows",
|
|
17043
|
+
"svg": "<path d=\"M3.5 14V6.5C3.5 5.39543 4.39543 4.5 5.5 4.5H20\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.75 1.75L20.5 4.5L17.75 7.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.25 22.25L3.5 19.5L6.25 16.75\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4 19.5H18.5C19.6046 19.5 20.5 18.6046 20.5 17.5V10\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 8V16\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8 12H16\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
17044
|
+
"iconName": "remix, new-try, repeat",
|
|
17045
|
+
"variant": {
|
|
17046
|
+
"join": "round",
|
|
17047
|
+
"filled": "off",
|
|
17048
|
+
"radius": "2",
|
|
17049
|
+
"stroke": "1"
|
|
17050
|
+
},
|
|
17051
|
+
"createdAt": "2025-12-18T09:02:26.493379+00:00",
|
|
17052
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
17053
|
+
"componentName": "IconRemix"
|
|
17054
|
+
},
|
|
17041
17055
|
{
|
|
17042
17056
|
"category": "Photography & Video",
|
|
17043
17057
|
"svg": "<path d=\"M18.5 3.5H5.5C4.39543 3.5 3.5 4.39543 3.5 5.5V18.5C3.5 19.6046 4.39543 20.5 5.5 20.5H18.5C19.6046 20.5 20.5 19.6046 20.5 18.5V5.5C20.5 4.39543 19.6046 3.5 18.5 3.5Z\" stroke=\"currentColor\"/><circle cx=\"12\" cy=\"12\" r=\"3.25\" stroke=\"currentColor\"/><path d=\"M14.5 9.5L19.5 4.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M9.5 14.5L4.5 19.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M3.5 11L11 3.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M13 20.5L20.5 13\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
|
|
@@ -22218,6 +22232,20 @@
|
|
|
22218
22232
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
22219
22233
|
"componentName": "IconVoiceAndVideo"
|
|
22220
22234
|
},
|
|
22235
|
+
{
|
|
22236
|
+
"category": "Sound & Music",
|
|
22237
|
+
"svg": "<path d=\"M21.5 8.5V11.5M18.5 3.5V16.5M15.5 6.65625V10M12.5 4.5V8.625\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><circle cx=\"6.5\" cy=\"15.5\" r=\"2\" stroke=\"currentColor\"/><path d=\"M11.5 11.5H6.5C4.29086 11.5 2.5 13.2909 2.5 15.5C2.5 17.7091 4.29086 19.5 6.5 19.5H11.5C13.7091 19.5 15.5 17.7091 15.5 15.5C15.5 13.2909 13.7091 11.5 11.5 11.5Z\" stroke=\"currentColor\"/>",
|
|
22238
|
+
"iconName": "voice-mode, voice-settings",
|
|
22239
|
+
"variant": {
|
|
22240
|
+
"join": "round",
|
|
22241
|
+
"filled": "off",
|
|
22242
|
+
"radius": "2",
|
|
22243
|
+
"stroke": "1"
|
|
22244
|
+
},
|
|
22245
|
+
"createdAt": "2025-12-17T17:02:01.679198+00:00",
|
|
22246
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
22247
|
+
"componentName": "IconVoiceMode"
|
|
22248
|
+
},
|
|
22221
22249
|
{
|
|
22222
22250
|
"category": "Sound & Music",
|
|
22223
22251
|
"svg": "<path d=\"M2.5 8.5V11.5M5.5 3.5V16.5M8.5 6.5V13.5M11.5 4.5V9.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"16.5\" cy=\"15.5\" r=\"5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"16.5\" cy=\"15.5\" r=\"3.5\" fill=\"currentColor\"/>",
|
|
@@ -22232,6 +22260,20 @@
|
|
|
22232
22260
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
22233
22261
|
"componentName": "IconVoiceRecord"
|
|
22234
22262
|
},
|
|
22263
|
+
{
|
|
22264
|
+
"category": "Sound & Music",
|
|
22265
|
+
"svg": "<path d=\"M7.85418 10C7.50099 10 7.17399 10.1863 6.99391 10.4901L6.37145 11.5404C6.19284 11.8418 5.86956 12.0277 5.51926 12.0305L4.28537 12.0405C3.93216 12.0433 3.60665 12.2323 3.42904 12.5376L3.03976 13.2068C2.86041 13.5151 2.85886 13.8956 3.03568 14.2054L3.63441 15.2543C3.80979 15.5615 3.80979 15.9385 3.63441 16.2458L3.03568 17.2946C2.85886 17.6044 2.86041 17.9849 3.03976 18.2932L3.42904 18.9624C3.60665 19.2677 3.93216 19.4567 4.28537 19.4595L5.51926 19.4695C5.86957 19.4723 6.19285 19.6582 6.37146 19.9596L6.99391 21.0099C7.17399 21.3137 7.50098 21.5 7.85417 21.5H8.64577C8.99896 21.5 9.32596 21.3137 9.50603 21.0099L10.1285 19.9596C10.3071 19.6582 10.6304 19.4723 10.9807 19.4695L12.2146 19.4595C12.5678 19.4567 12.8933 19.2677 13.071 18.9624L13.4602 18.2932C13.6396 17.9849 13.6411 17.6044 13.4643 17.2946L12.8656 16.2458C12.6902 15.9385 12.6902 15.5615 12.8656 15.2543L13.4643 14.2054C13.6411 13.8956 13.6396 13.5151 13.4602 13.2068L13.071 12.5376C12.8933 12.2323 12.5678 12.0433 12.2146 12.0405L10.9807 12.0305C10.6304 12.0277 10.3071 11.8418 10.1285 11.5404L9.50604 10.4901C9.32596 10.1863 8.99896 10 8.64577 10H7.85418Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><circle cx=\"8.25\" cy=\"15.75\" r=\"1.75\" stroke=\"currentColor\"/><path d=\"M21.5 7.70833V10.7917M18.5 2.5V16M15.5 6.625V10M12.5 4.54167V8.5\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>",
|
|
22266
|
+
"iconName": "voice-settings, edit-voice",
|
|
22267
|
+
"variant": {
|
|
22268
|
+
"join": "round",
|
|
22269
|
+
"filled": "off",
|
|
22270
|
+
"radius": "2",
|
|
22271
|
+
"stroke": "1"
|
|
22272
|
+
},
|
|
22273
|
+
"createdAt": "2025-12-17T17:02:01.679198+00:00",
|
|
22274
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
22275
|
+
"componentName": "IconVoiceSettings"
|
|
22276
|
+
},
|
|
22235
22277
|
{
|
|
22236
22278
|
"category": "AI & Magic",
|
|
22237
22279
|
"svg": "<path d=\"M7.5 3.5V20.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M3.50098 9.5V14.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M12 7.5V13.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M16.501 5.5V10.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M20.501 9.5V13.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M17.2405 15.1852L16.5436 13.3733C16.4571 13.1484 16.241 13 16 13C15.759 13 15.5429 13.1484 15.4564 13.3733L14.7595 15.1852C14.658 15.4493 14.4493 15.658 14.1852 15.7595L12.3733 16.4564C12.1484 16.5429 12 16.759 12 17C12 17.241 12.1484 17.4571 12.3733 17.5436L14.1852 18.2405C14.4493 18.342 14.658 18.5507 14.7595 18.8148L15.4564 20.6267C15.5429 20.8516 15.759 21 16 21C16.241 21 16.4571 20.8516 16.5436 20.6267L17.2405 18.8148C17.342 18.5507 17.5507 18.342 17.8148 18.2405L19.6267 17.5436C19.8516 17.4571 20 17.241 20 17C20 16.759 19.8516 16.5429 19.6267 16.4564L17.8148 15.7595C17.5507 15.658 17.342 15.4493 17.2405 15.1852Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -1216,6 +1216,7 @@ export type CentralIconName =
|
|
|
1216
1216
|
| "IconRecord"
|
|
1217
1217
|
| "IconRecraft"
|
|
1218
1218
|
| "IconReddit"
|
|
1219
|
+
| "IconRemix"
|
|
1219
1220
|
| "IconRemoveBackground"
|
|
1220
1221
|
| "IconRemoveBackground2"
|
|
1221
1222
|
| "IconRemoveFromBasket"
|
|
@@ -1586,7 +1587,9 @@ export type CentralIconName =
|
|
|
1586
1587
|
| "IconVoice2"
|
|
1587
1588
|
| "IconVoice3"
|
|
1588
1589
|
| "IconVoiceAndVideo"
|
|
1590
|
+
| "IconVoiceMode"
|
|
1589
1591
|
| "IconVoiceRecord"
|
|
1592
|
+
| "IconVoiceSettings"
|
|
1590
1593
|
| "IconVoiceSparkle"
|
|
1591
1594
|
| "IconVolleyball"
|
|
1592
1595
|
| "IconVolumeDown"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-2-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.73",
|
|
4
4
|
"style": "round-outlined-radius-2-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-stroke-1/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1648,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 63,
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
]
|
|
97
97
|
},
|
|
98
98
|
"Arrows": {
|
|
99
|
-
"count":
|
|
99
|
+
"count": 120,
|
|
100
100
|
"icons": [
|
|
101
101
|
"IconArrow",
|
|
102
102
|
"IconArrowBottomTop",
|
|
@@ -204,6 +204,7 @@
|
|
|
204
204
|
"IconMinimize45",
|
|
205
205
|
"IconOngoing",
|
|
206
206
|
"IconRandom",
|
|
207
|
+
"IconRemix",
|
|
207
208
|
"IconRotate360Left",
|
|
208
209
|
"IconRotate360Right",
|
|
209
210
|
"IconShareArrowDown",
|
|
@@ -1436,7 +1437,7 @@
|
|
|
1436
1437
|
]
|
|
1437
1438
|
},
|
|
1438
1439
|
"Sound & Music": {
|
|
1439
|
-
"count":
|
|
1440
|
+
"count": 50,
|
|
1440
1441
|
"icons": [
|
|
1441
1442
|
"IconAirpodLeft",
|
|
1442
1443
|
"IconAirpodRight",
|
|
@@ -1479,7 +1480,9 @@
|
|
|
1479
1480
|
"IconVocalMicrophone",
|
|
1480
1481
|
"IconVoice1",
|
|
1481
1482
|
"IconVoice3",
|
|
1483
|
+
"IconVoiceMode",
|
|
1482
1484
|
"IconVoiceRecord",
|
|
1485
|
+
"IconVoiceSettings",
|
|
1483
1486
|
"IconVolumeDown",
|
|
1484
1487
|
"IconVolumeFull",
|
|
1485
1488
|
"IconVolumeHalf",
|
|
@@ -3052,6 +3055,7 @@
|
|
|
3052
3055
|
"IconRecord": "record",
|
|
3053
3056
|
"IconRecraft": "recraft",
|
|
3054
3057
|
"IconReddit": "reddit",
|
|
3058
|
+
"IconRemix": "remix, new-try, repeat",
|
|
3055
3059
|
"IconRemoveBackground": "remove-background",
|
|
3056
3060
|
"IconRemoveBackground2": "remove-background-2",
|
|
3057
3061
|
"IconRemoveFromBasket": "remove-from-basket",
|
|
@@ -3422,7 +3426,9 @@
|
|
|
3422
3426
|
"IconVoice2": "voice-2, siri, wave",
|
|
3423
3427
|
"IconVoice3": "voice-3, wave",
|
|
3424
3428
|
"IconVoiceAndVideo": "voice-and-video, media",
|
|
3429
|
+
"IconVoiceMode": "voice-mode, voice-settings",
|
|
3425
3430
|
"IconVoiceRecord": "voice-record",
|
|
3431
|
+
"IconVoiceSettings": "voice-settings, edit-voice",
|
|
3426
3432
|
"IconVoiceSparkle": "voice-sparkle, ai, sound",
|
|
3427
3433
|
"IconVolleyball": "volleyball",
|
|
3428
3434
|
"IconVolumeDown": "volume-down",
|
package/index.d.ts
CHANGED
|
@@ -1215,6 +1215,7 @@ export { IconReceiptionBell, default as IconReceiptionBellDefault, } from "./Ico
|
|
|
1215
1215
|
export { IconRecord, default as IconRecordDefault } from "./IconRecord";
|
|
1216
1216
|
export { IconRecraft, default as IconRecraftDefault } from "./IconRecraft";
|
|
1217
1217
|
export { IconReddit, default as IconRedditDefault } from "./IconReddit";
|
|
1218
|
+
export { IconRemix, default as IconRemixDefault } from "./IconRemix";
|
|
1218
1219
|
export { IconRemoveBackground, default as IconRemoveBackgroundDefault, } from "./IconRemoveBackground";
|
|
1219
1220
|
export { IconRemoveBackground2, default as IconRemoveBackground2Default, } from "./IconRemoveBackground2";
|
|
1220
1221
|
export { IconRemoveFromBasket, default as IconRemoveFromBasketDefault, } from "./IconRemoveFromBasket";
|
|
@@ -1585,7 +1586,9 @@ export { IconVoice1, default as IconVoice1Default } from "./IconVoice1";
|
|
|
1585
1586
|
export { IconVoice2, default as IconVoice2Default } from "./IconVoice2";
|
|
1586
1587
|
export { IconVoice3, default as IconVoice3Default } from "./IconVoice3";
|
|
1587
1588
|
export { IconVoiceAndVideo, default as IconVoiceAndVideoDefault, } from "./IconVoiceAndVideo";
|
|
1589
|
+
export { IconVoiceMode, default as IconVoiceModeDefault, } from "./IconVoiceMode";
|
|
1588
1590
|
export { IconVoiceRecord, default as IconVoiceRecordDefault, } from "./IconVoiceRecord";
|
|
1591
|
+
export { IconVoiceSettings, default as IconVoiceSettingsDefault, } from "./IconVoiceSettings";
|
|
1589
1592
|
export { IconVoiceSparkle, default as IconVoiceSparkleDefault, } from "./IconVoiceSparkle";
|
|
1590
1593
|
export { IconVolleyball, default as IconVolleyballDefault, } from "./IconVolleyball";
|
|
1591
1594
|
export { IconVolumeDown, default as IconVolumeDownDefault, } from "./IconVolumeDown";
|