@central-icons-react-native/round-outlined-radius-1-stroke-1.5 1.1.27 → 1.1.29
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/IconImages1Alt/index.d.ts +4 -0
- package/IconImages1Alt/index.js +2 -0
- package/IconImages1Alt/index.js.map +1 -0
- package/IconImages1Alt/index.mjs +2 -0
- package/IconImages1Alt/index.mjs.map +1 -0
- package/IconWallet5/index.d.ts +4 -0
- package/IconWallet5/index.js +2 -0
- package/IconWallet5/index.js.map +1 -0
- package/IconWallet5/index.mjs +2 -0
- package/IconWallet5/index.mjs.map +1 -0
- package/README.md +2 -0
- package/filtered-icons.json +28 -0
- package/icons/index.d.ts +2 -0
- package/icons-index.json +8 -4
- package/index.d.ts +2 -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 +14 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!g.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(s=I(o,e))||s.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(d(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),P=r=>a(n({},"__esModule",{value:!0}),r);var k={};x(k,{IconImages1Alt:()=>f,default:()=>h});module.exports=P(k);var C=m(require("react"));var l=m(require("react")),c=require("react-native-svg"),i=({children:r,size:o=24,...t})=>l.default.createElement(c.Svg,{...t,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"),f=r=>C.default.createElement(i,{...r},C.default.createElement(p.Path,{d:"M16.25 20.25L8.70711 12.7071C8.31658 12.3166 7.68342 12.3166 7.29289 12.7071L3.75 16.25M16.25 20.25H19.25C19.8023 20.25 20.25 19.8023 20.25 19.25V4.75C20.25 4.19772 19.8023 3.75 19.25 3.75H4.75C4.19772 3.75 3.75 4.19772 3.75 4.75V16.25M16.25 20.25H4.75C4.19772 20.25 3.75 19.8023 3.75 19.25V16.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"}),C.default.createElement(p.Path,{d:"M14.5 11.5C15.6046 11.5 16.5 10.6046 16.5 9.5C16.5 8.39543 15.6046 7.5 14.5 7.5C13.3954 7.5 12.5 8.39543 12.5 9.5C12.5 10.6046 13.3954 11.5 14.5 11.5Z",stroke:"currentColor",strokeWidth:"1.5"})),h=f;0&&(module.exports={IconImages1Alt});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconImages1Alt/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 IconImages1Alt: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.25 20.25L8.70711 12.7071C8.31658 12.3166 7.68342 12.3166 7.29289 12.7071L3.75 16.25M16.25 20.25H19.25C19.8023 20.25 20.25 19.8023 20.25 19.25V4.75C20.25 4.19772 19.8023 3.75 19.25 3.75H4.75C4.19772 3.75 3.75 4.19772 3.75 4.75V16.25M16.25 20.25H4.75C4.19772 20.25 3.75 19.8023 3.75 19.25V16.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.5 11.5C15.6046 11.5 16.5 10.6046 16.5 9.5C16.5 8.39543 15.6046 7.5 14.5 7.5C13.3954 7.5 12.5 8.39543 12.5 9.5C12.5 10.6046 13.3954 11.5 14.5 11.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconImages1Alt;\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,oBAAAE,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,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2SACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yJACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["IconImages1Alt_exports","__export","IconImages1Alt","IconImages1Alt_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconImages1Alt","props","React","CentralIconBase","IconImages1Alt_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as s}from"react-native-svg";var e=({children:o,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"},o);import{Path as n}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(n,{d:"M16.25 20.25L8.70711 12.7071C8.31658 12.3166 7.68342 12.3166 7.29289 12.7071L3.75 16.25M16.25 20.25H19.25C19.8023 20.25 20.25 19.8023 20.25 19.25V4.75C20.25 4.19772 19.8023 3.75 19.25 3.75H4.75C4.19772 3.75 3.75 4.19772 3.75 4.75V16.25M16.25 20.25H4.75C4.19772 20.25 3.75 19.8023 3.75 19.25V16.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"}),t.createElement(n,{d:"M14.5 11.5C15.6046 11.5 16.5 10.6046 16.5 9.5C16.5 8.39543 15.6046 7.5 14.5 7.5C13.3954 7.5 12.5 8.39543 12.5 9.5C12.5 10.6046 13.3954 11.5 14.5 11.5Z",stroke:"currentColor",strokeWidth:"1.5"})),g=a;export{a as IconImages1Alt,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconImages1Alt/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 IconImages1Alt: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.25 20.25L8.70711 12.7071C8.31658 12.3166 7.68342 12.3166 7.29289 12.7071L3.75 16.25M16.25 20.25H19.25C19.8023 20.25 20.25 19.8023 20.25 19.25V4.75C20.25 4.19772 19.8023 3.75 19.25 3.75H4.75C4.19772 3.75 3.75 4.19772 3.75 4.75V16.25M16.25 20.25H4.75C4.19772 20.25 3.75 19.8023 3.75 19.25V16.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.5 11.5C15.6046 11.5 16.5 10.6046 16.5 9.5C16.5 8.39543 15.6046 7.5 14.5 7.5C13.3954 7.5 12.5 8.39543 12.5 9.5C12.5 10.6046 13.3954 11.5 14.5 11.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconImages1Alt;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2SACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yJACF,OAAO,eACP,YAAY,MACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconImages1Alt","props","React","CentralIconBase","IconImages1Alt_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var n=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of k(o))!I.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(s=f(o,t))||s.enumerable});return r};var i=(r,o,e)=>(e=r!=null?d(B(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>a(n({},"__esModule",{value:!0}),r);var h={};x(h,{IconWallet5:()=>u,default:()=>g});module.exports=P(h);var p=i(require("react"));var l=i(require("react")),m=require("react-native-svg"),c=({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 C=require("react-native-svg"),u=r=>p.default.createElement(c,{...r},p.default.createElement(C.Path,{d:"M21.25 9.5V5.75C21.25 5.19772 20.8023 4.75 20.25 4.75H3.75C3.19772 4.75 2.75 5.19772 2.75 5.75V18.25C2.75 18.8023 3.19772 19.25 3.75 19.25H20.25C20.8023 19.25 21.25 18.8023 21.25 18.25V14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M21.25 9.75H15.75C15.1977 9.75 14.75 10.1977 14.75 10.75V13.25C14.75 13.8023 15.1977 14.25 15.75 14.25H21.25C21.8023 14.25 22.25 13.8023 22.25 13.25V10.75C22.25 10.1977 21.8023 9.75 21.25 9.75Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),g=u;0&&(module.exports={IconWallet5});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconWallet5/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 IconWallet5: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.25 9.5V5.75C21.25 5.19772 20.8023 4.75 20.25 4.75H3.75C3.19772 4.75 2.75 5.19772 2.75 5.75V18.25C2.75 18.8023 3.19772 19.25 3.75 19.25H20.25C20.8023 19.25 21.25 18.8023 21.25 18.25V14.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21.25 9.75H15.75C15.1977 9.75 14.75 10.1977 14.75 10.75V13.25C14.75 13.8023 15.1977 14.25 15.75 14.25H21.25C21.8023 14.25 22.25 13.8023 22.25 13.25V10.75C22.25 10.1977 21.8023 9.75 21.25 9.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconWallet5;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,gMACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oMACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconWallet5_exports","__export","IconWallet5","IconWallet5_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconWallet5","props","React","CentralIconBase","IconWallet5_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as s}from"react-native-svg";var t=({children:o,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"},o);import{Path as n}from"react-native-svg";var a=o=>e.createElement(t,{...o},e.createElement(n,{d:"M21.25 9.5V5.75C21.25 5.19772 20.8023 4.75 20.25 4.75H3.75C3.19772 4.75 2.75 5.19772 2.75 5.75V18.25C2.75 18.8023 3.19772 19.25 3.75 19.25H20.25C20.8023 19.25 21.25 18.8023 21.25 18.25V14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(n,{d:"M21.25 9.75H15.75C15.1977 9.75 14.75 10.1977 14.75 10.75V13.25C14.75 13.8023 15.1977 14.25 15.75 14.25H21.25C21.8023 14.25 22.25 13.8023 22.25 13.25V10.75C22.25 10.1977 21.8023 9.75 21.25 9.75Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),I=a;export{a as IconWallet5,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconWallet5/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 IconWallet5: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.25 9.5V5.75C21.25 5.19772 20.8023 4.75 20.25 4.75H3.75C3.19772 4.75 2.75 5.19772 2.75 5.75V18.25C2.75 18.8023 3.19772 19.25 3.75 19.25H20.25C20.8023 19.25 21.25 18.8023 21.25 18.25V14.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21.25 9.75H15.75C15.1977 9.75 14.75 10.1977 14.75 10.75V13.25C14.75 13.8023 15.1977 14.25 15.75 14.25H21.25C21.8023 14.25 22.25 13.8023 22.25 13.25V10.75C22.25 10.1977 21.8023 9.75 21.25 9.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconWallet5;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,gMACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oMACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconWallet5","props","React","CentralIconBase","IconWallet5_default"]}
|
package/README.md
CHANGED
|
@@ -1194,6 +1194,7 @@ Below is a complete list of available icons:
|
|
|
1194
1194
|
- IconHd
|
|
1195
1195
|
- IconHighlights
|
|
1196
1196
|
- IconImages1
|
|
1197
|
+
- IconImages1Alt
|
|
1197
1198
|
- IconImages2
|
|
1198
1199
|
- IconImages3
|
|
1199
1200
|
- IconImages4
|
|
@@ -1325,6 +1326,7 @@ Below is a complete list of available icons:
|
|
|
1325
1326
|
- IconWallet2
|
|
1326
1327
|
- IconWallet3
|
|
1327
1328
|
- IconWallet4
|
|
1329
|
+
- IconWallet5
|
|
1328
1330
|
- IconYen
|
|
1329
1331
|
|
|
1330
1332
|
### Social Media & Brands
|
package/filtered-icons.json
CHANGED
|
@@ -11368,6 +11368,20 @@
|
|
|
11368
11368
|
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
11369
11369
|
"componentName": "IconImages1"
|
|
11370
11370
|
},
|
|
11371
|
+
{
|
|
11372
|
+
"category": "Photography & Video",
|
|
11373
|
+
"svg": "<path d=\"M16.25 20.25L8.70711 12.7071C8.31658 12.3166 7.68342 12.3166 7.29289 12.7071L3.75 16.25M16.25 20.25H19.25C19.8023 20.25 20.25 19.8023 20.25 19.25V4.75C20.25 4.19772 19.8023 3.75 19.25 3.75H4.75C4.19772 3.75 3.75 4.19772 3.75 4.75V16.25M16.25 20.25H4.75C4.19772 20.25 3.75 19.8023 3.75 19.25V16.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M14.5 11.5C15.6046 11.5 16.5 10.6046 16.5 9.5C16.5 8.39543 15.6046 7.5 14.5 7.5C13.3954 7.5 12.5 8.39543 12.5 9.5C12.5 10.6046 13.3954 11.5 14.5 11.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>",
|
|
11374
|
+
"iconName": "images-1-alt, photos, pictures, shot",
|
|
11375
|
+
"variant": {
|
|
11376
|
+
"join": "round",
|
|
11377
|
+
"filled": "off",
|
|
11378
|
+
"radius": "1",
|
|
11379
|
+
"stroke": "1.5"
|
|
11380
|
+
},
|
|
11381
|
+
"createdAt": "2025-11-14T14:00:22.345671+00:00",
|
|
11382
|
+
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
11383
|
+
"componentName": "IconImages1Alt"
|
|
11384
|
+
},
|
|
11371
11385
|
{
|
|
11372
11386
|
"category": "Photography & Video",
|
|
11373
11387
|
"svg": "<path d=\"M7.29289 12.7071L6.76256 12.1768L7.29289 12.7071ZM4.75 4.5H19.25V3H4.75V4.5ZM19.5 4.75V19.25H21V4.75H19.5ZM4.28033 16.7803L7.82322 13.2374L6.76256 12.1768L3.21967 15.7197L4.28033 16.7803ZM4.5 19.25V16.25H3V19.25H4.5ZM4.5 16.25V4.75H3V16.25H4.5ZM8.17678 13.2374L15.7197 20.7803L16.7803 19.7197L9.23744 12.1768L8.17678 13.2374ZM19.25 19.5H16.25V21H19.25V19.5ZM16.25 19.5H4.75V21H16.25V19.5ZM7.82322 13.2374C7.92085 13.1398 8.07915 13.1398 8.17678 13.2374L9.23744 12.1768C8.55402 11.4934 7.44598 11.4934 6.76256 12.1768L7.82322 13.2374ZM3 19.25C3 20.2165 3.7835 21 4.75 21V19.5C4.61193 19.5 4.5 19.3881 4.5 19.25H3ZM19.5 19.25C19.5 19.3881 19.3881 19.5 19.25 19.5V21C20.2165 21 21 20.2165 21 19.25H19.5ZM19.25 4.5C19.3881 4.5 19.5 4.61193 19.5 4.75H21C21 3.7835 20.2165 3 19.25 3V4.5ZM4.75 3C3.7835 3 3 3.7835 3 4.75H4.5C4.5 4.61193 4.61193 4.5 4.75 4.5V3ZM15.75 9.5C15.75 10.1904 15.1904 10.75 14.5 10.75V12.25C16.0188 12.25 17.25 11.0188 17.25 9.5H15.75ZM14.5 10.75C13.8096 10.75 13.25 10.1904 13.25 9.5H11.75C11.75 11.0188 12.9812 12.25 14.5 12.25V10.75ZM13.25 9.5C13.25 8.80964 13.8096 8.25 14.5 8.25V6.75C12.9812 6.75 11.75 7.98122 11.75 9.5H13.25ZM14.5 8.25C15.1904 8.25 15.75 8.80964 15.75 9.5H17.25C17.25 7.98122 16.0188 6.75 14.5 6.75V8.25Z\" fill=\"currentColor\"/>",
|
|
@@ -21252,6 +21266,20 @@
|
|
|
21252
21266
|
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
21253
21267
|
"componentName": "IconWallet4"
|
|
21254
21268
|
},
|
|
21269
|
+
{
|
|
21270
|
+
"category": "Shopping & Payment",
|
|
21271
|
+
"svg": "<path d=\"M21.25 9.5V5.75C21.25 5.19772 20.8023 4.75 20.25 4.75H3.75C3.19772 4.75 2.75 5.19772 2.75 5.75V18.25C2.75 18.8023 3.19772 19.25 3.75 19.25H20.25C20.8023 19.25 21.25 18.8023 21.25 18.25V14.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.25 9.75H15.75C15.1977 9.75 14.75 10.1977 14.75 10.75V13.25C14.75 13.8023 15.1977 14.25 15.75 14.25H21.25C21.8023 14.25 22.25 13.8023 22.25 13.25V10.75C22.25 10.1977 21.8023 9.75 21.25 9.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
21272
|
+
"iconName": "wallet-5",
|
|
21273
|
+
"variant": {
|
|
21274
|
+
"join": "round",
|
|
21275
|
+
"filled": "off",
|
|
21276
|
+
"radius": "1",
|
|
21277
|
+
"stroke": "1.5"
|
|
21278
|
+
},
|
|
21279
|
+
"createdAt": "2025-11-14T13:31:01.86097+00:00",
|
|
21280
|
+
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
21281
|
+
"componentName": "IconWallet5"
|
|
21282
|
+
},
|
|
21255
21283
|
{
|
|
21256
21284
|
"category": "Photography & Video",
|
|
21257
21285
|
"svg": "<path d=\"M3 13.4232C5.07915 12.3217 9.2393 9.75 12 9.75C14.7607 9.75 18.9208 12.3217 21 13.4232M11.735 10.1127C11.1067 11.01 9.63873 13.3504 10.4583 14.5893C11.4861 16.1429 16.0676 13.8961 16.625 16.1429C16.9749 17.5532 15.1808 18.4834 14 18.9335M3.75 4.75H20.25C20.8023 4.75 21.25 5.19772 21.25 5.75V18.25C21.25 18.8023 20.8023 19.25 20.25 19.25H3.75C3.19772 19.25 2.75 18.8023 2.75 18.25V5.75C2.75 5.19771 3.19772 4.75 3.75 4.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -811,6 +811,7 @@ export type CentralIconName =
|
|
|
811
811
|
| "IconImageAltText"
|
|
812
812
|
| "IconImageAvatarSparkle"
|
|
813
813
|
| "IconImages1"
|
|
814
|
+
| "IconImages1Alt"
|
|
814
815
|
| "IconImages2"
|
|
815
816
|
| "IconImages3"
|
|
816
817
|
| "IconImages4"
|
|
@@ -1517,6 +1518,7 @@ export type CentralIconName =
|
|
|
1517
1518
|
| "IconWallet2"
|
|
1518
1519
|
| "IconWallet3"
|
|
1519
1520
|
| "IconWallet4"
|
|
1521
|
+
| "IconWallet5"
|
|
1520
1522
|
| "IconWallpaper"
|
|
1521
1523
|
| "IconWardrobe"
|
|
1522
1524
|
| "IconWarningSign"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-1-stroke-1.5",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.29",
|
|
4
4
|
"style": "round-outlined-radius-1-stroke-1.5",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-1-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": 1563,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 44,
|
|
@@ -1059,7 +1059,7 @@
|
|
|
1059
1059
|
]
|
|
1060
1060
|
},
|
|
1061
1061
|
"Photography & Video": {
|
|
1062
|
-
"count":
|
|
1062
|
+
"count": 80,
|
|
1063
1063
|
"icons": [
|
|
1064
1064
|
"Icon4k",
|
|
1065
1065
|
"IconAdjustPhoto",
|
|
@@ -1110,6 +1110,7 @@
|
|
|
1110
1110
|
"IconHd",
|
|
1111
1111
|
"IconHighlights",
|
|
1112
1112
|
"IconImages1",
|
|
1113
|
+
"IconImages1Alt",
|
|
1113
1114
|
"IconImages2",
|
|
1114
1115
|
"IconImages3",
|
|
1115
1116
|
"IconImages4",
|
|
@@ -1175,7 +1176,7 @@
|
|
|
1175
1176
|
]
|
|
1176
1177
|
},
|
|
1177
1178
|
"Shopping & Payment": {
|
|
1178
|
-
"count":
|
|
1179
|
+
"count": 70,
|
|
1179
1180
|
"icons": [
|
|
1180
1181
|
"IconAddToBasket",
|
|
1181
1182
|
"IconAddToBasket2",
|
|
@@ -1245,6 +1246,7 @@
|
|
|
1245
1246
|
"IconWallet2",
|
|
1246
1247
|
"IconWallet3",
|
|
1247
1248
|
"IconWallet4",
|
|
1249
|
+
"IconWallet5",
|
|
1248
1250
|
"IconYen"
|
|
1249
1251
|
]
|
|
1250
1252
|
},
|
|
@@ -2563,6 +2565,7 @@
|
|
|
2563
2565
|
"IconImageAltText": "image-alt-text",
|
|
2564
2566
|
"IconImageAvatarSparkle": "image-avatar-sparkle, generated avatar, profile ai, magic avatar",
|
|
2565
2567
|
"IconImages1": "images-1, photos, pictures, shot",
|
|
2568
|
+
"IconImages1Alt": "images-1-alt, photos, pictures, shot",
|
|
2566
2569
|
"IconImages2": "images-2, photos, pictures, shot",
|
|
2567
2570
|
"IconImages3": "images-3, photos, pictures, shot",
|
|
2568
2571
|
"IconImages4": "images-4, photos, pictures, shot",
|
|
@@ -3269,6 +3272,7 @@
|
|
|
3269
3272
|
"IconWallet2": "wallet-2",
|
|
3270
3273
|
"IconWallet3": "wallet-3",
|
|
3271
3274
|
"IconWallet4": "wallet-4",
|
|
3275
|
+
"IconWallet5": "wallet-5",
|
|
3272
3276
|
"IconWallpaper": "wallpaper, os",
|
|
3273
3277
|
"IconWardrobe": "wardrobe",
|
|
3274
3278
|
"IconWarningSign": "warning-sign, attention, coution",
|
package/index.d.ts
CHANGED
|
@@ -811,6 +811,7 @@ export { IconImageAltText, default as IconImageAltTextDefault, } from "./IconIma
|
|
|
811
811
|
export { IconImageAvatarSparkle, default as IconImageAvatarSparkleDefault, } from "./IconImageAvatarSparkle";
|
|
812
812
|
export { IconImageSparkle, default as IconImageSparkleDefault, } from "./IconImageSparkle";
|
|
813
813
|
export { IconImages1, default as IconImages1Default } from "./IconImages1";
|
|
814
|
+
export { IconImages1Alt, default as IconImages1AltDefault, } from "./IconImages1Alt";
|
|
814
815
|
export { IconImages2, default as IconImages2Default } from "./IconImages2";
|
|
815
816
|
export { IconImages3, default as IconImages3Default } from "./IconImages3";
|
|
816
817
|
export { IconImages4, default as IconImages4Default } from "./IconImages4";
|
|
@@ -1516,6 +1517,7 @@ export { IconWallet1, default as IconWallet1Default } from "./IconWallet1";
|
|
|
1516
1517
|
export { IconWallet2, default as IconWallet2Default } from "./IconWallet2";
|
|
1517
1518
|
export { IconWallet3, default as IconWallet3Default } from "./IconWallet3";
|
|
1518
1519
|
export { IconWallet4, default as IconWallet4Default } from "./IconWallet4";
|
|
1520
|
+
export { IconWallet5, default as IconWallet5Default } from "./IconWallet5";
|
|
1519
1521
|
export { IconWallpaper, default as IconWallpaperDefault, } from "./IconWallpaper";
|
|
1520
1522
|
export { IconWardrobe, default as IconWardrobeDefault } from "./IconWardrobe";
|
|
1521
1523
|
export { IconWarningSign, default as IconWarningSignDefault, } from "./IconWarningSign";
|