@central-icons-react-native/square-filled-radius-0-stroke-1.5 1.1.150 → 1.1.152
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/IconAddImage/index.d.ts +4 -0
- package/IconAddImage/index.js +2 -0
- package/IconAddImage/index.js.map +1 -0
- package/IconAddImage/index.mjs +2 -0
- package/IconAddImage/index.mjs.map +1 -0
- package/IconArchiveJunk/index.d.ts +4 -0
- package/IconArchiveJunk/index.js +2 -0
- package/IconArchiveJunk/index.js.map +1 -0
- package/IconArchiveJunk/index.mjs +2 -0
- package/IconArchiveJunk/index.mjs.map +1 -0
- package/IconScanVoice/index.d.ts +4 -0
- package/IconScanVoice/index.js +2 -0
- package/IconScanVoice/index.js.map +1 -0
- package/IconScanVoice/index.mjs +2 -0
- package/IconScanVoice/index.mjs.map +1 -0
- package/IconVoiceMemo/index.d.ts +4 -0
- package/IconVoiceMemo/index.js +2 -0
- package/IconVoiceMemo/index.js.map +1 -0
- package/IconVoiceMemo/index.mjs +2 -0
- package/IconVoiceMemo/index.mjs.map +1 -0
- package/README.md +4 -0
- package/filtered-icons.json +56 -0
- package/icons/index.d.ts +4 -0
- package/icons-index.json +13 -5
- package/index.d.ts +4 -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 +28 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var t=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var H=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,V=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of H(o))!V.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(C=u(o,n))||C.enumerable});return r};var m=(r,o,e)=>(e=r!=null?i(I(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>a(t({},"__esModule",{value:!0}),r);var x={};B(x,{IconAddImage:()=>d,default:()=>v});module.exports=g(x);var p=m(require("react"));var f=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>f.default.createElement(s.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 l=require("react-native-svg"),d=r=>p.default.createElement(c,{...r},p.default.createElement(l.Path,{d:"M19.25 17.75H22V19.25H19.25V22H17.75V19.25H15V17.75H17.75V15H19.25V17.75Z",fill:"currentColor"}),p.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 14.1699C20.2645 13.7443 19.4109 13.5 18.5 13.5C16.0512 13.5 14.0149 15.2607 13.585 17.585L8 12L4.5 15.5V19.5H13.6006C13.7095 20.0364 13.9052 20.5409 14.1709 21H3V3H21V14.1699ZM15 6.5C13.6193 6.5 12.5 7.61929 12.5 9C12.5 10.3807 13.6193 11.5 15 11.5C16.3807 11.5 17.5 10.3807 17.5 9C17.5 7.61929 16.3807 6.5 15 6.5Z",fill:"currentColor"})),v=d;0&&(module.exports={IconAddImage});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAddImage/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 IconAddImage: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.25 17.75H22V19.25H19.25V22H17.75V19.25H15V17.75H17.75V15H19.25V17.75Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 14.1699C20.2645 13.7443 19.4109 13.5 18.5 13.5C16.0512 13.5 14.0149 15.2607 13.585 17.585L8 12L4.5 15.5V19.5H13.6006C13.7095 20.0364 13.9052 20.5409 14.1709 21H3V3H21V14.1699ZM15 6.5C13.6193 6.5 12.5 7.61929 12.5 9C12.5 10.3807 13.6193 11.5 15 11.5C16.3807 11.5 17.5 10.3807 17.5 9C17.5 7.61929 16.3807 6.5 15 6.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAddImage;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4EACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,iUACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconAddImage_exports","__export","IconAddImage","IconAddImage_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAddImage","props","React","CentralIconBase","IconAddImage_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import l from"react";import{Svg as C}from"react-native-svg";var n=({children:o,size:r=24,...p})=>l.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as t}from"react-native-svg";var a=o=>e.createElement(n,{...o},e.createElement(t,{d:"M19.25 17.75H22V19.25H19.25V22H17.75V19.25H15V17.75H17.75V15H19.25V17.75Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 14.1699C20.2645 13.7443 19.4109 13.5 18.5 13.5C16.0512 13.5 14.0149 15.2607 13.585 17.585L8 12L4.5 15.5V19.5H13.6006C13.7095 20.0364 13.9052 20.5409 14.1709 21H3V3H21V14.1699ZM15 6.5C13.6193 6.5 12.5 7.61929 12.5 9C12.5 10.3807 13.6193 11.5 15 11.5C16.3807 11.5 17.5 10.3807 17.5 9C17.5 7.61929 16.3807 6.5 15 6.5Z",fill:"currentColor"})),V=a;export{a as IconAddImage,V as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAddImage/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 IconAddImage: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.25 17.75H22V19.25H19.25V22H17.75V19.25H15V17.75H17.75V15H19.25V17.75Z\"\n fill=\"currentColor\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 14.1699C20.2645 13.7443 19.4109 13.5 18.5 13.5C16.0512 13.5 14.0149 15.2607 13.585 17.585L8 12L4.5 15.5V19.5H13.6006C13.7095 20.0364 13.9052 20.5409 14.1709 21H3V3H21V14.1699ZM15 6.5C13.6193 6.5 12.5 7.61929 12.5 9C12.5 10.3807 13.6193 11.5 15 11.5C16.3807 11.5 17.5 10.3807 17.5 9C17.5 7.61929 16.3807 6.5 15 6.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAddImage;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4EACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,iUACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconAddImage","props","React","CentralIconBase","IconAddImage_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var t=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var v=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},m=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of d(o))!B.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(a=u(o,n))||a.enumerable});return r};var C=(r,o,e)=>(e=r!=null?i(v(r)):{},m(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>m(t({},"__esModule",{value:!0}),r);var g={};I(g,{IconArchiveJunk:()=>L,default:()=>P});module.exports=x(g);var p=C(require("react"));var c=C(require("react")),f=require("react-native-svg"),s=({children:r,size:o=24,...e})=>c.default.createElement(f.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 l=require("react-native-svg"),L=r=>p.default.createElement(s,{...r},p.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 21H3V8.5H21V21ZM12 13.6895L10.0303 11.7197L8.96973 12.7803L10.9395 14.75L8.96973 16.7197L10.0303 17.7803L12 15.8105L13.9697 17.7803L15.0303 16.7197L13.0605 14.75L15.0303 12.7803L13.9697 11.7197L12 13.6895Z",fill:"currentColor"}),p.default.createElement(l.Path,{d:"M22 7H2V3H22V7Z",fill:"currentColor"})),P=L;0&&(module.exports={IconArchiveJunk});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArchiveJunk/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 IconArchiveJunk: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 21H3V8.5H21V21ZM12 13.6895L10.0303 11.7197L8.96973 12.7803L10.9395 14.75L8.96973 16.7197L10.0303 17.7803L12 15.8105L13.9697 17.7803L15.0303 16.7197L13.0605 14.75L15.0303 12.7803L13.9697 11.7197L12 13.6895Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M22 7H2V3H22V7Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArchiveJunk;\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,qBAAAE,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,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,oNACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,KAAK,eAAe,CAChD,EAIGE,EAAQJ","names":["IconArchiveJunk_exports","__export","IconArchiveJunk","IconArchiveJunk_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconArchiveJunk","props","React","CentralIconBase","IconArchiveJunk_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import l from"react";import{Svg as a}from"react-native-svg";var n=({children:o,size:r=24,...p})=>l.createElement(a,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as t}from"react-native-svg";var m=o=>e.createElement(n,{...o},e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 21H3V8.5H21V21ZM12 13.6895L10.0303 11.7197L8.96973 12.7803L10.9395 14.75L8.96973 16.7197L10.0303 17.7803L12 15.8105L13.9697 17.7803L15.0303 16.7197L13.0605 14.75L15.0303 12.7803L13.9697 11.7197L12 13.6895Z",fill:"currentColor"}),e.createElement(t,{d:"M22 7H2V3H22V7Z",fill:"currentColor"})),B=m;export{m as IconArchiveJunk,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArchiveJunk/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 IconArchiveJunk: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 21H3V8.5H21V21ZM12 13.6895L10.0303 11.7197L8.96973 12.7803L10.9395 14.75L8.96973 16.7197L10.0303 17.7803L12 15.8105L13.9697 17.7803L15.0303 16.7197L13.0605 14.75L15.0303 12.7803L13.9697 11.7197L12 13.6895Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M22 7H2V3H22V7Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArchiveJunk;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,oNACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,kBAAkB,KAAK,eAAe,CAChD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconArchiveJunk","props","React","CentralIconBase","IconArchiveJunk_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=Object.create;var p=Object.defineProperty;var s=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var a=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var l in o)p(r,l,{get:o[l],enumerable:!0})},H=(r,o,l,V)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of d(o))!B.call(r,e)&&e!==l&&p(r,e,{get:()=>o[e],enumerable:!(V=s(o,e))||V.enumerable});return r};var C=(r,o,l)=>(l=r!=null?c(a(r)):{},H(o||!r||!r.__esModule?p(l,"default",{value:r,enumerable:!0}):l,r)),M=r=>H(p({},"__esModule",{value:!0}),r);var x={};I(x,{IconScanVoice:()=>m,default:()=>Z});module.exports=M(x);var n=C(require("react"));var f=C(require("react")),i=require("react-native-svg"),u=({children:r,size:o=24,...l})=>f.default.createElement(i.Svg,{...l,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"),m=r=>n.default.createElement(u,{...r},n.default.createElement(t.Path,{d:"M4.5 19.5H9V21H3V15H4.5V19.5Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M21 21H15V19.5H19.5V15H21V21Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M11.0801 17H9.58008V7H11.0801V17Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M17.75 15.5H16.25V8.5H17.75V15.5Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M7.75 14H6.25V10H7.75V14Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M14.4199 14H12.9199V10H14.4199V14Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M9 4.5H4.5V9H3V3H9V4.5Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M21 9H19.5V4.5H15V3H21V9Z",fill:"currentColor"})),Z=m;0&&(module.exports={IconScanVoice});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconScanVoice/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 IconScanVoice: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M4.5 19.5H9V21H3V15H4.5V19.5Z\" fill=\"currentColor\" />\n <Path d=\"M21 21H15V19.5H19.5V15H21V21Z\" fill=\"currentColor\" />\n <Path d=\"M11.0801 17H9.58008V7H11.0801V17Z\" fill=\"currentColor\" />\n <Path d=\"M17.75 15.5H16.25V8.5H17.75V15.5Z\" fill=\"currentColor\" />\n <Path d=\"M7.75 14H6.25V10H7.75V14Z\" fill=\"currentColor\" />\n <Path d=\"M14.4199 14H12.9199V10H14.4199V14Z\" fill=\"currentColor\" />\n <Path d=\"M9 4.5H4.5V9H3V3H9V4.5Z\" fill=\"currentColor\" />\n <Path d=\"M21 9H19.5V4.5H15V3H21V9Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconScanVoice;\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,EAAqB,4BAERC,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5D,EAAAA,QAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5D,EAAAA,QAAA,cAAC,QAAK,EAAE,oCAAoC,KAAK,eAAe,EAChE,EAAAA,QAAA,cAAC,QAAK,EAAE,oCAAoC,KAAK,eAAe,EAChE,EAAAA,QAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxD,EAAAA,QAAA,cAAC,QAAK,EAAE,qCAAqC,KAAK,eAAe,EACjE,EAAAA,QAAA,cAAC,QAAK,EAAE,0BAA0B,KAAK,eAAe,EACtD,EAAAA,QAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,CAC1D,EAIGE,EAAQJ","names":["IconScanVoice_exports","__export","IconScanVoice","IconScanVoice_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconScanVoice","props","React","CentralIconBase","IconScanVoice_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import p from"react";import{Svg as V}from"react-native-svg";var t=({children:n,size:l=24,...e})=>p.createElement(V,{...e,width:typeof l=="number"?`${l}px`:l,height:typeof l=="number"?`${l}px`:l,viewBox:"0 0 24 24",fill:"none"},n);import{Path as o}from"react-native-svg";var H=n=>r.createElement(t,{...n},r.createElement(o,{d:"M4.5 19.5H9V21H3V15H4.5V19.5Z",fill:"currentColor"}),r.createElement(o,{d:"M21 21H15V19.5H19.5V15H21V21Z",fill:"currentColor"}),r.createElement(o,{d:"M11.0801 17H9.58008V7H11.0801V17Z",fill:"currentColor"}),r.createElement(o,{d:"M17.75 15.5H16.25V8.5H17.75V15.5Z",fill:"currentColor"}),r.createElement(o,{d:"M7.75 14H6.25V10H7.75V14Z",fill:"currentColor"}),r.createElement(o,{d:"M14.4199 14H12.9199V10H14.4199V14Z",fill:"currentColor"}),r.createElement(o,{d:"M9 4.5H4.5V9H3V3H9V4.5Z",fill:"currentColor"}),r.createElement(o,{d:"M21 9H19.5V4.5H15V3H21V9Z",fill:"currentColor"})),B=H;export{H as IconScanVoice,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconScanVoice/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 IconScanVoice: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M4.5 19.5H9V21H3V15H4.5V19.5Z\" fill=\"currentColor\" />\n <Path d=\"M21 21H15V19.5H19.5V15H21V21Z\" fill=\"currentColor\" />\n <Path d=\"M11.0801 17H9.58008V7H11.0801V17Z\" fill=\"currentColor\" />\n <Path d=\"M17.75 15.5H16.25V8.5H17.75V15.5Z\" fill=\"currentColor\" />\n <Path d=\"M7.75 14H6.25V10H7.75V14Z\" fill=\"currentColor\" />\n <Path d=\"M14.4199 14H12.9199V10H14.4199V14Z\" fill=\"currentColor\" />\n <Path d=\"M9 4.5H4.5V9H3V3H9V4.5Z\" fill=\"currentColor\" />\n <Path d=\"M21 9H19.5V4.5H15V3H21V9Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconScanVoice;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5DG,EAAA,cAACH,EAAA,CAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5DG,EAAA,cAACH,EAAA,CAAK,EAAE,oCAAoC,KAAK,eAAe,EAChEG,EAAA,cAACH,EAAA,CAAK,EAAE,oCAAoC,KAAK,eAAe,EAChEG,EAAA,cAACH,EAAA,CAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDG,EAAA,cAACH,EAAA,CAAK,EAAE,qCAAqC,KAAK,eAAe,EACjEG,EAAA,cAACH,EAAA,CAAK,EAAE,0BAA0B,KAAK,eAAe,EACtDG,EAAA,cAACH,EAAA,CAAK,EAAE,4BAA4B,KAAK,eAAe,CAC1D,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconScanVoice","props","React","CentralIconBase","IconScanVoice_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var C=Object.defineProperty;var V=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var H=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var n in o)C(r,n,{get:o[n],enumerable:!0})},f=(r,o,n,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let l of B(o))!I.call(r,l)&&l!==n&&C(r,l,{get:()=>o[l],enumerable:!(p=V(o,l))||p.enumerable});return r};var m=(r,o,n)=>(n=r!=null?u(H(r)):{},f(o||!r||!r.__esModule?C(n,"default",{value:r,enumerable:!0}):n,r)),x=r=>f(C({},"__esModule",{value:!0}),r);var g={};d(g,{IconVoiceMemo:()=>c,default:()=>P});module.exports=x(g);var e=m(require("react"));var i=m(require("react")),s=require("react-native-svg"),a=({children:r,size:o=24,...n})=>i.default.createElement(s.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:"M16.25 2.25C17.7688 2.25 19 3.48122 19 5C19 6.2584 18.1537 7.31578 17 7.64258V16.3564C18.1539 16.6832 19 17.7415 19 19C19 20.5188 17.7688 21.75 16.25 21.75C14.7312 21.75 13.5 20.5188 13.5 19C13.5 17.7415 14.3461 16.6832 15.5 16.3564V7.64258C14.3463 7.31578 13.5 6.2584 13.5 5C13.5 3.48122 14.7312 2.25 16.25 2.25Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M8.5 21H7V3H8.5V21Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M4.5 15H3V9H4.5V15Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M12.75 15H11.25V9H12.75V15Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M21 14H19.5V10H21V14Z",fill:"currentColor"})),P=c;0&&(module.exports={IconVoiceMemo});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceMemo/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 IconVoiceMemo: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.25 2.25C17.7688 2.25 19 3.48122 19 5C19 6.2584 18.1537 7.31578 17 7.64258V16.3564C18.1539 16.6832 19 17.7415 19 19C19 20.5188 17.7688 21.75 16.25 21.75C14.7312 21.75 13.5 20.5188 13.5 19C13.5 17.7415 14.3461 16.6832 15.5 16.3564V7.64258C14.3463 7.31578 13.5 6.2584 13.5 5C13.5 3.48122 14.7312 2.25 16.25 2.25Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M8.5 21H7V3H8.5V21Z\" fill=\"currentColor\" />\n <Path d=\"M4.5 15H3V9H4.5V15Z\" fill=\"currentColor\" />\n <Path d=\"M12.75 15H11.25V9H12.75V15Z\" fill=\"currentColor\" />\n <Path d=\"M21 14H19.5V10H21V14Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceMemo;\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,EAAqB,4BAERC,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4TACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,sBAAsB,KAAK,eAAe,EAClD,EAAAA,QAAA,cAAC,QAAK,EAAE,sBAAsB,KAAK,eAAe,EAClD,EAAAA,QAAA,cAAC,QAAK,EAAE,8BAA8B,KAAK,eAAe,EAC1D,EAAAA,QAAA,cAAC,QAAK,EAAE,wBAAwB,KAAK,eAAe,CACtD,EAIGE,EAAQJ","names":["IconVoiceMemo_exports","__export","IconVoiceMemo","IconVoiceMemo_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVoiceMemo","props","React","CentralIconBase","IconVoiceMemo_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:e,size:r=24,...l})=>C.createElement(p,{...l,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var f=e=>o.createElement(t,{...e},o.createElement(n,{d:"M16.25 2.25C17.7688 2.25 19 3.48122 19 5C19 6.2584 18.1537 7.31578 17 7.64258V16.3564C18.1539 16.6832 19 17.7415 19 19C19 20.5188 17.7688 21.75 16.25 21.75C14.7312 21.75 13.5 20.5188 13.5 19C13.5 17.7415 14.3461 16.6832 15.5 16.3564V7.64258C14.3463 7.31578 13.5 6.2584 13.5 5C13.5 3.48122 14.7312 2.25 16.25 2.25Z",fill:"currentColor"}),o.createElement(n,{d:"M8.5 21H7V3H8.5V21Z",fill:"currentColor"}),o.createElement(n,{d:"M4.5 15H3V9H4.5V15Z",fill:"currentColor"}),o.createElement(n,{d:"M12.75 15H11.25V9H12.75V15Z",fill:"currentColor"}),o.createElement(n,{d:"M21 14H19.5V10H21V14Z",fill:"currentColor"})),I=f;export{f as IconVoiceMemo,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVoiceMemo/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 IconVoiceMemo: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.25 2.25C17.7688 2.25 19 3.48122 19 5C19 6.2584 18.1537 7.31578 17 7.64258V16.3564C18.1539 16.6832 19 17.7415 19 19C19 20.5188 17.7688 21.75 16.25 21.75C14.7312 21.75 13.5 20.5188 13.5 19C13.5 17.7415 14.3461 16.6832 15.5 16.3564V7.64258C14.3463 7.31578 13.5 6.2584 13.5 5C13.5 3.48122 14.7312 2.25 16.25 2.25Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M8.5 21H7V3H8.5V21Z\" fill=\"currentColor\" />\n <Path d=\"M4.5 15H3V9H4.5V15Z\" fill=\"currentColor\" />\n <Path d=\"M12.75 15H11.25V9H12.75V15Z\" fill=\"currentColor\" />\n <Path d=\"M21 14H19.5V10H21V14Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconVoiceMemo;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4TACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,sBAAsB,KAAK,eAAe,EAClDG,EAAA,cAACH,EAAA,CAAK,EAAE,sBAAsB,KAAK,eAAe,EAClDG,EAAA,cAACH,EAAA,CAAK,EAAE,8BAA8B,KAAK,eAAe,EAC1DG,EAAA,cAACH,EAAA,CAAK,EAAE,wBAAwB,KAAK,eAAe,CACtD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVoiceMemo","props","React","CentralIconBase","IconVoiceMemo_default"]}
|
package/README.md
CHANGED
|
@@ -992,6 +992,7 @@ Below is a complete list of available icons:
|
|
|
992
992
|
- IconAppearanceDarkMode
|
|
993
993
|
- IconAppearanceLightMode
|
|
994
994
|
- IconArchive1
|
|
995
|
+
- IconArchiveJunk
|
|
995
996
|
- IconArrowBoxLeft
|
|
996
997
|
- IconArrowBoxRight
|
|
997
998
|
- IconArrowInbox
|
|
@@ -1350,6 +1351,7 @@ Below is a complete list of available icons:
|
|
|
1350
1351
|
### Photography & Video
|
|
1351
1352
|
|
|
1352
1353
|
- Icon4k
|
|
1354
|
+
- IconAddImage
|
|
1353
1355
|
- IconAdjustPhoto
|
|
1354
1356
|
- IconAlt
|
|
1355
1357
|
- IconAspectRatio11
|
|
@@ -1706,6 +1708,7 @@ Below is a complete list of available icons:
|
|
|
1706
1708
|
- IconRewind15s
|
|
1707
1709
|
- IconRewind30s
|
|
1708
1710
|
- IconRewind5s
|
|
1711
|
+
- IconScanVoice
|
|
1709
1712
|
- IconShuffle
|
|
1710
1713
|
- IconSkip
|
|
1711
1714
|
- IconSoundFx
|
|
@@ -1716,6 +1719,7 @@ Below is a complete list of available icons:
|
|
|
1716
1719
|
- IconVoice3
|
|
1717
1720
|
- IconVoiceHigh
|
|
1718
1721
|
- IconVoiceLow
|
|
1722
|
+
- IconVoiceMemo
|
|
1719
1723
|
- IconVoiceMid
|
|
1720
1724
|
- IconVoiceMode
|
|
1721
1725
|
- IconVoiceRecord
|
package/filtered-icons.json
CHANGED
|
@@ -84,6 +84,20 @@
|
|
|
84
84
|
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
85
85
|
"componentName": "Icon4k"
|
|
86
86
|
},
|
|
87
|
+
{
|
|
88
|
+
"category": "Photography & Video",
|
|
89
|
+
"svg": "<path d=\"M19.25 17.75H22V19.25H19.25V22H17.75V19.25H15V17.75H17.75V15H19.25V17.75Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 14.1699C20.2645 13.7443 19.4109 13.5 18.5 13.5C16.0512 13.5 14.0149 15.2607 13.585 17.585L8 12L4.5 15.5V19.5H13.6006C13.7095 20.0364 13.9052 20.5409 14.1709 21H3V3H21V14.1699ZM15 6.5C13.6193 6.5 12.5 7.61929 12.5 9C12.5 10.3807 13.6193 11.5 15 11.5C16.3807 11.5 17.5 10.3807 17.5 9C17.5 7.61929 16.3807 6.5 15 6.5Z\" fill=\"currentColor\"/>",
|
|
90
|
+
"iconName": "add-image, upload-image",
|
|
91
|
+
"variant": {
|
|
92
|
+
"join": "square",
|
|
93
|
+
"filled": "on",
|
|
94
|
+
"radius": "0",
|
|
95
|
+
"stroke": "1.5"
|
|
96
|
+
},
|
|
97
|
+
"createdAt": "2026-03-04T09:00:36.81334+00:00",
|
|
98
|
+
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
99
|
+
"componentName": "IconAddImage"
|
|
100
|
+
},
|
|
87
101
|
{
|
|
88
102
|
"category": "Edit",
|
|
89
103
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.18945 12.0001L12.0001 1.18945L22.8108 12.0001L12.0001 22.8108L1.18945 12.0001ZM12.75 8.25H11.25V11.25H8.25V12.75H11.25V15.75H12.75V12.75H15.75V11.25H12.75V8.25Z\" fill=\"currentColor\"/>",
|
|
@@ -1008,6 +1022,20 @@
|
|
|
1008
1022
|
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
1009
1023
|
"componentName": "IconArchive1"
|
|
1010
1024
|
},
|
|
1025
|
+
{
|
|
1026
|
+
"category": "Interface General",
|
|
1027
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 21H3V8.5H21V21ZM12 13.6895L10.0303 11.7197L8.96973 12.7803L10.9395 14.75L8.96973 16.7197L10.0303 17.7803L12 15.8105L13.9697 17.7803L15.0303 16.7197L13.0605 14.75L15.0303 12.7803L13.9697 11.7197L12 13.6895Z\" fill=\"currentColor\"/><path d=\"M22 7H2V3H22V7Z\" fill=\"currentColor\"/>",
|
|
1028
|
+
"iconName": "archive-junk",
|
|
1029
|
+
"variant": {
|
|
1030
|
+
"join": "square",
|
|
1031
|
+
"filled": "on",
|
|
1032
|
+
"radius": "0",
|
|
1033
|
+
"stroke": "1.5"
|
|
1034
|
+
},
|
|
1035
|
+
"createdAt": "2026-03-02T09:01:01.031321+00:00",
|
|
1036
|
+
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
1037
|
+
"componentName": "IconArchiveJunk"
|
|
1038
|
+
},
|
|
1011
1039
|
{
|
|
1012
1040
|
"category": "Augmented Reality",
|
|
1013
1041
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 1.85822L15.5409 3.84999L14.8055 5.15735L12.75 4.00111V6.99998H11.25V4.00111L9.19446 5.15735L8.45907 3.84999L12 1.85822ZM7.45112 6.13798L5.2647 7.36784L7.83267 8.85046L7.08267 10.1495L4.5 8.65839L4.5 11H3L3 6.92072L6.71573 4.83062L7.45112 6.13798ZM17.2843 4.83062L21 6.92072V11H19.5V8.65839L16.9173 10.1495L16.1673 8.85046L18.7353 7.36784L16.5489 6.13798L17.2843 4.83062ZM21 13V17.0792L17.2843 19.1693L16.5489 17.862L18.7353 16.6321L16.1267 15.1261L16.8767 13.827L19.5 15.3416V13H21ZM4.5 13L4.5 15.3416L7.12327 13.827L7.87327 15.1261L5.2647 16.6321L7.45111 17.862L6.71572 19.1693L3 17.0792L3 13H4.5ZM12.75 16.9531V19.9988L14.8055 18.8426L15.5409 20.15L12 22.1417L8.45906 20.15L9.19445 18.8426L11.25 19.9988V16.9531H12.75Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.9731 11.1495L12.75 12.433V15H11.25V12.433L9.0269 11.1495L9.7769 9.85046L12 11.134L14.2231 9.85046L14.9731 11.1495Z\" fill=\"currentColor\"/>",
|
|
@@ -19768,6 +19796,20 @@
|
|
|
19768
19796
|
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
19769
19797
|
"componentName": "IconScanTextSparkle"
|
|
19770
19798
|
},
|
|
19799
|
+
{
|
|
19800
|
+
"category": "Sound & Music",
|
|
19801
|
+
"svg": "<path d=\"M4.5 19.5H9V21H3V15H4.5V19.5Z\" fill=\"currentColor\"/><path d=\"M21 21H15V19.5H19.5V15H21V21Z\" fill=\"currentColor\"/><path d=\"M11.0801 17H9.58008V7H11.0801V17Z\" fill=\"currentColor\"/><path d=\"M17.75 15.5H16.25V8.5H17.75V15.5Z\" fill=\"currentColor\"/><path d=\"M7.75 14H6.25V10H7.75V14Z\" fill=\"currentColor\"/><path d=\"M14.4199 14H12.9199V10H14.4199V14Z\" fill=\"currentColor\"/><path d=\"M9 4.5H4.5V9H3V3H9V4.5Z\" fill=\"currentColor\"/><path d=\"M21 9H19.5V4.5H15V3H21V9Z\" fill=\"currentColor\"/>",
|
|
19802
|
+
"iconName": "scan-voice",
|
|
19803
|
+
"variant": {
|
|
19804
|
+
"join": "square",
|
|
19805
|
+
"filled": "on",
|
|
19806
|
+
"radius": "0",
|
|
19807
|
+
"stroke": "1.5"
|
|
19808
|
+
},
|
|
19809
|
+
"createdAt": "2026-03-04T09:00:36.81334+00:00",
|
|
19810
|
+
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
19811
|
+
"componentName": "IconScanVoice"
|
|
19812
|
+
},
|
|
19771
19813
|
{
|
|
19772
19814
|
"category": "Building",
|
|
19773
19815
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 4H18V18.5H19V8H22V18.5H23V20H1V18.5H2V8H5V18.5H6V4ZM14 18.5V15H10V18.5H14Z\" fill=\"currentColor\"/>",
|
|
@@ -24808,6 +24850,20 @@
|
|
|
24808
24850
|
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
24809
24851
|
"componentName": "IconVoiceLow"
|
|
24810
24852
|
},
|
|
24853
|
+
{
|
|
24854
|
+
"category": "Sound & Music",
|
|
24855
|
+
"svg": "<path d=\"M16.25 2.25C17.7688 2.25 19 3.48122 19 5C19 6.2584 18.1537 7.31578 17 7.64258V16.3564C18.1539 16.6832 19 17.7415 19 19C19 20.5188 17.7688 21.75 16.25 21.75C14.7312 21.75 13.5 20.5188 13.5 19C13.5 17.7415 14.3461 16.6832 15.5 16.3564V7.64258C14.3463 7.31578 13.5 6.2584 13.5 5C13.5 3.48122 14.7312 2.25 16.25 2.25Z\" fill=\"currentColor\"/><path d=\"M8.5 21H7V3H8.5V21Z\" fill=\"currentColor\"/><path d=\"M4.5 15H3V9H4.5V15Z\" fill=\"currentColor\"/><path d=\"M12.75 15H11.25V9H12.75V15Z\" fill=\"currentColor\"/><path d=\"M21 14H19.5V10H21V14Z\" fill=\"currentColor\"/>",
|
|
24856
|
+
"iconName": "voice-memo, voice-control",
|
|
24857
|
+
"variant": {
|
|
24858
|
+
"join": "square",
|
|
24859
|
+
"filled": "on",
|
|
24860
|
+
"radius": "0",
|
|
24861
|
+
"stroke": "1.5"
|
|
24862
|
+
},
|
|
24863
|
+
"createdAt": "2026-03-04T09:00:36.81334+00:00",
|
|
24864
|
+
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
24865
|
+
"componentName": "IconVoiceMemo"
|
|
24866
|
+
},
|
|
24811
24867
|
{
|
|
24812
24868
|
"category": "Sound & Music",
|
|
24813
24869
|
"svg": "<path d=\"M8.5 19H7V5H8.5V19Z\" fill=\"currentColor\"/><path d=\"M17 17H15.5V7H17V17Z\" fill=\"currentColor\"/><path d=\"M12.75 15H11.25V9H12.75V15Z\" fill=\"currentColor\"/><path d=\"M4.5 14H3V10H4.5V14Z\" fill=\"currentColor\"/><path d=\"M21 14H19.5V10H21V14Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export type CentralIconName =
|
|
|
5
5
|
| "Icon3dPackage"
|
|
6
6
|
| "Icon3dSphere"
|
|
7
7
|
| "Icon4k"
|
|
8
|
+
| "IconAddImage"
|
|
8
9
|
| "IconAddKeyframe"
|
|
9
10
|
| "IconAddToBasket"
|
|
10
11
|
| "IconAddToBasket2"
|
|
@@ -71,6 +72,7 @@ export type CentralIconName =
|
|
|
71
72
|
| "IconArc"
|
|
72
73
|
| "IconArchive"
|
|
73
74
|
| "IconArchive1"
|
|
75
|
+
| "IconArchiveJunk"
|
|
74
76
|
| "IconArCube3"
|
|
75
77
|
| "IconArena"
|
|
76
78
|
| "IconArmchair"
|
|
@@ -1411,6 +1413,7 @@ export type CentralIconName =
|
|
|
1411
1413
|
| "IconSatellite2"
|
|
1412
1414
|
| "IconScanCode"
|
|
1413
1415
|
| "IconScanTextSparkle"
|
|
1416
|
+
| "IconScanVoice"
|
|
1414
1417
|
| "IconSchool"
|
|
1415
1418
|
| "IconScissors1"
|
|
1416
1419
|
| "IconScissors2"
|
|
@@ -1771,6 +1774,7 @@ export type CentralIconName =
|
|
|
1771
1774
|
| "IconVoiceCircle"
|
|
1772
1775
|
| "IconVoiceHigh"
|
|
1773
1776
|
| "IconVoiceLow"
|
|
1777
|
+
| "IconVoiceMemo"
|
|
1774
1778
|
| "IconVoiceMid"
|
|
1775
1779
|
| "IconVoiceMode"
|
|
1776
1780
|
| "IconVoiceRecord"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-filled-radius-0-stroke-1.5",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.152",
|
|
4
4
|
"style": "square-filled-radius-0-stroke-1.5",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-1.5/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": 1838,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 70,
|
|
@@ -893,13 +893,14 @@
|
|
|
893
893
|
]
|
|
894
894
|
},
|
|
895
895
|
"Interface General": {
|
|
896
|
-
"count":
|
|
896
|
+
"count": 190,
|
|
897
897
|
"icons": [
|
|
898
898
|
"IconAnchor1",
|
|
899
899
|
"IconAnchor2",
|
|
900
900
|
"IconAppearanceDarkMode",
|
|
901
901
|
"IconAppearanceLightMode",
|
|
902
902
|
"IconArchive1",
|
|
903
|
+
"IconArchiveJunk",
|
|
903
904
|
"IconArrowBoxLeft",
|
|
904
905
|
"IconArrowBoxRight",
|
|
905
906
|
"IconArrowInbox",
|
|
@@ -1267,9 +1268,10 @@
|
|
|
1267
1268
|
]
|
|
1268
1269
|
},
|
|
1269
1270
|
"Photography & Video": {
|
|
1270
|
-
"count":
|
|
1271
|
+
"count": 84,
|
|
1271
1272
|
"icons": [
|
|
1272
1273
|
"Icon4k",
|
|
1274
|
+
"IconAddImage",
|
|
1273
1275
|
"IconAdjustPhoto",
|
|
1274
1276
|
"IconAlt",
|
|
1275
1277
|
"IconAspectRatio11",
|
|
@@ -1598,7 +1600,7 @@
|
|
|
1598
1600
|
]
|
|
1599
1601
|
},
|
|
1600
1602
|
"Sound & Music": {
|
|
1601
|
-
"count":
|
|
1603
|
+
"count": 56,
|
|
1602
1604
|
"icons": [
|
|
1603
1605
|
"IconAirpodLeft",
|
|
1604
1606
|
"IconAirpodRight",
|
|
@@ -1634,6 +1636,7 @@
|
|
|
1634
1636
|
"IconRewind15s",
|
|
1635
1637
|
"IconRewind30s",
|
|
1636
1638
|
"IconRewind5s",
|
|
1639
|
+
"IconScanVoice",
|
|
1637
1640
|
"IconShuffle",
|
|
1638
1641
|
"IconSkip",
|
|
1639
1642
|
"IconSoundFx",
|
|
@@ -1644,6 +1647,7 @@
|
|
|
1644
1647
|
"IconVoice3",
|
|
1645
1648
|
"IconVoiceHigh",
|
|
1646
1649
|
"IconVoiceLow",
|
|
1650
|
+
"IconVoiceMemo",
|
|
1647
1651
|
"IconVoiceMid",
|
|
1648
1652
|
"IconVoiceMode",
|
|
1649
1653
|
"IconVoiceRecord",
|
|
@@ -2042,6 +2046,7 @@
|
|
|
2042
2046
|
"Icon3dPackage": "3d-package, box",
|
|
2043
2047
|
"Icon3dSphere": "3d-sphere",
|
|
2044
2048
|
"Icon4k": "4k",
|
|
2049
|
+
"IconAddImage": "add-image, upload-image",
|
|
2045
2050
|
"IconAddKeyframe": "add-keyframe, rhombus",
|
|
2046
2051
|
"IconAddToBasket": "add-to-basket",
|
|
2047
2052
|
"IconAddToBasket2": "add-to-basket-2",
|
|
@@ -2108,6 +2113,7 @@
|
|
|
2108
2113
|
"IconArc": "arc",
|
|
2109
2114
|
"IconArchive": "archive, folder, box",
|
|
2110
2115
|
"IconArchive1": "archive-1, inbox, file",
|
|
2116
|
+
"IconArchiveJunk": "archive-junk",
|
|
2111
2117
|
"IconArCube3": "ar-cube-3",
|
|
2112
2118
|
"IconArena": "arena",
|
|
2113
2119
|
"IconArmchair": "armchair, seat, chill",
|
|
@@ -3448,6 +3454,7 @@
|
|
|
3448
3454
|
"IconSatellite2": "satellite-2, radar, feed",
|
|
3449
3455
|
"IconScanCode": "scan-code, barcode",
|
|
3450
3456
|
"IconScanTextSparkle": "scan-text-sparkle, scan, arrows-all-sides, focus, list",
|
|
3457
|
+
"IconScanVoice": "scan-voice",
|
|
3451
3458
|
"IconSchool": "school, building",
|
|
3452
3459
|
"IconScissors1": "scissors-1, cut",
|
|
3453
3460
|
"IconScissors2": "scissors-2, cut",
|
|
@@ -3808,6 +3815,7 @@
|
|
|
3808
3815
|
"IconVoiceCircle": "voice-circle, waves",
|
|
3809
3816
|
"IconVoiceHigh": "voice-high, wave",
|
|
3810
3817
|
"IconVoiceLow": "voice-low, wave",
|
|
3818
|
+
"IconVoiceMemo": "voice-memo, voice-control",
|
|
3811
3819
|
"IconVoiceMid": "voice-mid, wave",
|
|
3812
3820
|
"IconVoiceMode": "voice-mode, voice-settings",
|
|
3813
3821
|
"IconVoiceRecord": "voice-record",
|
package/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export { Icon3dBoxTop, default as Icon3dBoxTopDefault } from "./Icon3dBoxTop";
|
|
|
4
4
|
export { Icon3dPackage, default as Icon3dPackageDefault, } from "./Icon3dPackage";
|
|
5
5
|
export { Icon3dSphere, default as Icon3dSphereDefault } from "./Icon3dSphere";
|
|
6
6
|
export { Icon4k, default as Icon4kDefault } from "./Icon4k";
|
|
7
|
+
export { IconAddImage, default as IconAddImageDefault } from "./IconAddImage";
|
|
7
8
|
export { IconAddKeyframe, default as IconAddKeyframeDefault, } from "./IconAddKeyframe";
|
|
8
9
|
export { IconAddToBasket, default as IconAddToBasketDefault, } from "./IconAddToBasket";
|
|
9
10
|
export { IconAddToBasket2, default as IconAddToBasket2Default, } from "./IconAddToBasket2";
|
|
@@ -73,6 +74,7 @@ export { IconArScanCube2, default as IconArScanCube2Default, } from "./IconArSca
|
|
|
73
74
|
export { IconArc, default as IconArcDefault } from "./IconArc";
|
|
74
75
|
export { IconArchive, default as IconArchiveDefault } from "./IconArchive";
|
|
75
76
|
export { IconArchive1, default as IconArchive1Default } from "./IconArchive1";
|
|
77
|
+
export { IconArchiveJunk, default as IconArchiveJunkDefault, } from "./IconArchiveJunk";
|
|
76
78
|
export { IconArena, default as IconArenaDefault } from "./IconArena";
|
|
77
79
|
export { IconArmchair, default as IconArmchairDefault } from "./IconArmchair";
|
|
78
80
|
export { IconAround, default as IconAroundDefault } from "./IconAround";
|
|
@@ -1410,6 +1412,7 @@ export { IconSatellite1, default as IconSatellite1Default, } from "./IconSatelli
|
|
|
1410
1412
|
export { IconSatellite2, default as IconSatellite2Default, } from "./IconSatellite2";
|
|
1411
1413
|
export { IconScanCode, default as IconScanCodeDefault } from "./IconScanCode";
|
|
1412
1414
|
export { IconScanTextSparkle, default as IconScanTextSparkleDefault, } from "./IconScanTextSparkle";
|
|
1415
|
+
export { IconScanVoice, default as IconScanVoiceDefault, } from "./IconScanVoice";
|
|
1413
1416
|
export { IconSchool, default as IconSchoolDefault } from "./IconSchool";
|
|
1414
1417
|
export { IconScissors1, default as IconScissors1Default, } from "./IconScissors1";
|
|
1415
1418
|
export { IconScissors2, default as IconScissors2Default, } from "./IconScissors2";
|
|
@@ -1770,6 +1773,7 @@ export { IconVoiceAndVideo, default as IconVoiceAndVideoDefault, } from "./IconV
|
|
|
1770
1773
|
export { IconVoiceCircle, default as IconVoiceCircleDefault, } from "./IconVoiceCircle";
|
|
1771
1774
|
export { IconVoiceHigh, default as IconVoiceHighDefault, } from "./IconVoiceHigh";
|
|
1772
1775
|
export { IconVoiceLow, default as IconVoiceLowDefault } from "./IconVoiceLow";
|
|
1776
|
+
export { IconVoiceMemo, default as IconVoiceMemoDefault, } from "./IconVoiceMemo";
|
|
1773
1777
|
export { IconVoiceMid, default as IconVoiceMidDefault } from "./IconVoiceMid";
|
|
1774
1778
|
export { IconVoiceMode, default as IconVoiceModeDefault, } from "./IconVoiceMode";
|
|
1775
1779
|
export { IconVoiceRecord, default as IconVoiceRecordDefault, } from "./IconVoiceRecord";
|