@central-icons-react-native/round-filled-radius-3-stroke-1.5 1.1.28 → 1.1.30
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/IconDia/index.js +1 -1
- package/IconDia/index.js.map +1 -1
- package/IconDia/index.mjs +1 -1
- package/IconDia/index.mjs.map +1 -1
- 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/README.md +1 -1
- package/filtered-icons.json +15 -15
- package/icons/index.d.ts +1 -1
- package/icons-index.json +5 -5
- package/index.d.ts +1 -1
- 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 +9 -9
- package/IconReceiptCheck2/index.d.ts +0 -4
- package/IconReceiptCheck2/index.js +0 -2
- package/IconReceiptCheck2/index.js.map +0 -1
- package/IconReceiptCheck2/index.mjs +0 -2
- package/IconReceiptCheck2/index.mjs.map +0 -1
package/IconDia/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of u(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(p=I(o,e))||p.enumerable});return r};var l=(r,o,t)=>(t=r!=null?B(x(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var y={};g(y,{IconDia:()=>i,default:()=>h});module.exports=v(y);var C=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(s.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 f=require("react-native-svg"),i=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{d:"M12 2.70358C12.2518 2.70355 12.5058 2.71207 12.7613 2.72964C18.0971 3.09701 22.4035 7.44413 22.7306 12.7839C22.8815 15.2705 22.1449 17.5893 20.7928 19.5992C20.3771 20.2173 19.554 20.3586 18.8712 20.0609C16.7569 19.139 14.3784 18.4064 12 18.4377C9.62158 18.4064 7.24311 19.1391 5.12881 20.0609C4.44602 20.3586 3.62294 20.2173 3.20718 19.5992C1.85505 17.5893 1.1185 15.2705 1.26942 12.7839C1.59648 7.4441 5.90288 3.09695 11.2387 2.72964C11.4942 2.71207 11.7482 2.70355 12 2.70358Z",fill:"currentColor"})),h=i;0&&(module.exports={IconDia});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconDia/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconDia/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path
|
|
1
|
+
{"version":3,"sources":["../src/IconDia/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 IconDia: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2.70358C12.2518 2.70355 12.5058 2.71207 12.7613 2.72964C18.0971 3.09701 22.4035 7.44413 22.7306 12.7839C22.8815 15.2705 22.1449 17.5893 20.7928 19.5992C20.3771 20.2173 19.554 20.3586 18.8712 20.0609C16.7569 19.139 14.3784 18.4064 12 18.4377C9.62158 18.4064 7.24311 19.1391 5.12881 20.0609C4.44602 20.3586 3.62294 20.2173 3.20718 19.5992C1.85505 17.5893 1.1185 15.2705 1.26942 12.7839C1.59648 7.4441 5.90288 3.09695 11.2387 2.72964C11.4942 2.71207 11.7482 2.70355 12 2.70358Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDia;\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,aAAAE,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,EAAqCC,GAE9C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,ieACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconDia_exports","__export","IconDia","IconDia_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDia","props","React","CentralIconBase","IconDia_default"]}
|
package/IconDia/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...n})=>C.createElement(p,{...n,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 a}from"react-native-svg";var l=o=>e.createElement(t,{...o},e.createElement(a,{d:"M12 2.70358C12.2518 2.70355 12.5058 2.71207 12.7613 2.72964C18.0971 3.09701 22.4035 7.44413 22.7306 12.7839C22.8815 15.2705 22.1449 17.5893 20.7928 19.5992C20.3771 20.2173 19.554 20.3586 18.8712 20.0609C16.7569 19.139 14.3784 18.4064 12 18.4377C9.62158 18.4064 7.24311 19.1391 5.12881 20.0609C4.44602 20.3586 3.62294 20.2173 3.20718 19.5992C1.85505 17.5893 1.1185 15.2705 1.26942 12.7839C1.59648 7.4441 5.90288 3.09695 11.2387 2.72964C11.4942 2.71207 11.7482 2.70355 12 2.70358Z",fill:"currentColor"})),P=l;export{l as IconDia,P as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconDia/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconDia/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path
|
|
1
|
+
{"version":3,"sources":["../src/IconDia/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 IconDia: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2.70358C12.2518 2.70355 12.5058 2.71207 12.7613 2.72964C18.0971 3.09701 22.4035 7.44413 22.7306 12.7839C22.8815 15.2705 22.1449 17.5893 20.7928 19.5992C20.3771 20.2173 19.554 20.3586 18.8712 20.0609C16.7569 19.139 14.3784 18.4064 12 18.4377C9.62158 18.4064 7.24311 19.1391 5.12881 20.0609C4.44602 20.3586 3.62294 20.2173 3.20718 19.5992C1.85505 17.5893 1.1185 15.2705 1.26942 12.7839C1.59648 7.4441 5.90288 3.09695 11.2387 2.72964C11.4942 2.71207 11.7482 2.70355 12 2.70358Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDia;\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,EAAqCC,GAE9CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,ieACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDia","props","React","CentralIconBase","IconDia_default"]}
|
|
@@ -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 v=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of B(r))!g.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(C=I(r,t))||C.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(d(o)):{},l(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),x=o=>l(n({},"__esModule",{value:!0}),o);var h={};v(h,{IconImages1Alt:()=>i,default:()=>P});module.exports=x(h);var p=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...e})=>m.default.createElement(s.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>p.default.createElement(c,{...o},p.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M17.25 3C19.3211 3 21 4.67893 21 6.75V17.25C21 19.3211 19.3211 21 17.25 21H6.75C4.67893 21 3 19.3211 3 17.25V6.75C3 4.67893 4.67893 3 6.75 3H17.25ZM9.59082 13.5908C8.71218 12.7124 7.28782 12.7124 6.40918 13.5908L4.5 15.5V17.25C4.5 18.4926 5.50736 19.5 6.75 19.5H15.5L9.59082 13.5908ZM15 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"})),P=i;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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M17.25 3C19.3211 3 21 4.67893 21 6.75V17.25C21 19.3211 19.3211 21 17.25 21H6.75C4.67893 21 3 19.3211 3 17.25V6.75C3 4.67893 4.67893 3 6.75 3H17.25ZM9.59082 13.5908C8.71218 12.7124 7.28782 12.7124 6.40918 13.5908L4.5 15.5V17.25C4.5 18.4926 5.50736 19.5 6.75 19.5H15.5L9.59082 13.5908ZM15 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 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,SAAS,UACT,SAAS,UACT,EAAE,yaACF,KAAK,eACP,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 C}from"react-native-svg";var e=({children:r,size:o=24,...n})=>p.createElement(C,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M17.25 3C19.3211 3 21 4.67893 21 6.75V17.25C21 19.3211 19.3211 21 17.25 21H6.75C4.67893 21 3 19.3211 3 17.25V6.75C3 4.67893 4.67893 3 6.75 3H17.25ZM9.59082 13.5908C8.71218 12.7124 7.28782 12.7124 6.40918 13.5908L4.5 15.5V17.25C4.5 18.4926 5.50736 19.5 6.75 19.5H15.5L9.59082 13.5908ZM15 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"})),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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M17.25 3C19.3211 3 21 4.67893 21 6.75V17.25C21 19.3211 19.3211 21 17.25 21H6.75C4.67893 21 3 19.3211 3 17.25V6.75C3 4.67893 4.67893 3 6.75 3H17.25ZM9.59082 13.5908C8.71218 12.7124 7.28782 12.7124 6.40918 13.5908L4.5 15.5V17.25C4.5 18.4926 5.50736 19.5 6.75 19.5H15.5L9.59082 13.5908ZM15 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 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,SAAS,UACT,SAAS,UACT,EAAE,yaACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconImages1Alt","props","React","CentralIconBase","IconImages1Alt_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
|
|
@@ -1305,7 +1306,6 @@ Below is a complete list of available icons:
|
|
|
1305
1306
|
- IconPound
|
|
1306
1307
|
- IconReceiptBill
|
|
1307
1308
|
- IconReceiptCheck
|
|
1308
|
-
- IconReceiptCheck2
|
|
1309
1309
|
- IconReceiptStorno
|
|
1310
1310
|
- IconReceiptTax
|
|
1311
1311
|
- IconRemoveFromBasket
|
package/filtered-icons.json
CHANGED
|
@@ -7618,7 +7618,7 @@
|
|
|
7618
7618
|
},
|
|
7619
7619
|
{
|
|
7620
7620
|
"category": "Social Media & Brands",
|
|
7621
|
-
"svg": "<
|
|
7621
|
+
"svg": "<path d=\"M12 2.70358C12.2518 2.70355 12.5058 2.71207 12.7613 2.72964C18.0971 3.09701 22.4035 7.44413 22.7306 12.7839C22.8815 15.2705 22.1449 17.5893 20.7928 19.5992C20.3771 20.2173 19.554 20.3586 18.8712 20.0609C16.7569 19.139 14.3784 18.4064 12 18.4377C9.62158 18.4064 7.24311 19.1391 5.12881 20.0609C4.44602 20.3586 3.62294 20.2173 3.20718 19.5992C1.85505 17.5893 1.1185 15.2705 1.26942 12.7839C1.59648 7.4441 5.90288 3.09695 11.2387 2.72964C11.4942 2.71207 11.7482 2.70355 12 2.70358Z\" fill=\"currentColor\"/>",
|
|
7622
7622
|
"iconName": "dia",
|
|
7623
7623
|
"variant": {
|
|
7624
7624
|
"join": "round",
|
|
@@ -11368,6 +11368,20 @@
|
|
|
11368
11368
|
"packageName": "round-filled-radius-3-stroke-1.5",
|
|
11369
11369
|
"componentName": "IconImages1"
|
|
11370
11370
|
},
|
|
11371
|
+
{
|
|
11372
|
+
"category": "Photography & Video",
|
|
11373
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.25 3C19.3211 3 21 4.67893 21 6.75V17.25C21 19.3211 19.3211 21 17.25 21H6.75C4.67893 21 3 19.3211 3 17.25V6.75C3 4.67893 4.67893 3 6.75 3H17.25ZM9.59082 13.5908C8.71218 12.7124 7.28782 12.7124 6.40918 13.5908L4.5 15.5V17.25C4.5 18.4926 5.50736 19.5 6.75 19.5H15.5L9.59082 13.5908ZM15 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\"/>",
|
|
11374
|
+
"iconName": "images-1-alt, photos, pictures, shot",
|
|
11375
|
+
"variant": {
|
|
11376
|
+
"join": "round",
|
|
11377
|
+
"filled": "on",
|
|
11378
|
+
"radius": "3",
|
|
11379
|
+
"stroke": "1.5"
|
|
11380
|
+
},
|
|
11381
|
+
"createdAt": "2025-11-14T14:00:22.345671+00:00",
|
|
11382
|
+
"packageName": "round-filled-radius-3-stroke-1.5",
|
|
11383
|
+
"componentName": "IconImages1Alt"
|
|
11384
|
+
},
|
|
11371
11385
|
{
|
|
11372
11386
|
"category": "Photography & Video",
|
|
11373
11387
|
"svg": "<path d=\"M14.5 7C13.1193 7 12 8.11929 12 9.5C12 10.8807 13.1193 12 14.5 12C15.8807 12 17 10.8807 17 9.5C17 8.11929 15.8807 7 14.5 7Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.75 3.25C4.817 3.25 3.25 4.817 3.25 6.75V17.25C3.25 19.183 4.817 20.75 6.75 20.75H17.25C19.183 20.75 20.75 19.183 20.75 17.25V6.75C20.75 4.817 19.183 3.25 17.25 3.25H6.75ZM4.25 6.75C4.25 5.36929 5.36929 4.25 6.75 4.25H17.25C18.6307 4.25 19.75 5.36929 19.75 6.75V17.25C19.75 18.6307 18.6307 19.75 17.25 19.75H16.4571L10.4749 13.7678C9.10804 12.4009 6.89196 12.4009 5.52513 13.7678L4.25 15.0429V6.75Z\" fill=\"currentColor\"/>",
|
|
@@ -16058,20 +16072,6 @@
|
|
|
16058
16072
|
"packageName": "round-filled-radius-3-stroke-1.5",
|
|
16059
16073
|
"componentName": "IconReceiptCheck"
|
|
16060
16074
|
},
|
|
16061
|
-
{
|
|
16062
|
-
"category": "Shopping & Payment",
|
|
16063
|
-
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 5.75C4 3.67893 5.67893 2 7.75 2H16.25C18.3211 2 20 3.67893 20 5.75V21.25C20 21.544 19.8283 21.8108 19.5607 21.9326C19.2931 22.0544 18.9791 22.0086 18.7574 21.8156L16.6924 20.017L14.8539 21.7899C14.5634 22.07 14.1033 22.07 13.8127 21.7899L12 20.0419L10.1873 21.7899C9.89674 22.07 9.4366 22.07 9.14606 21.7899L7.30756 20.017L5.24259 21.8156C5.02091 22.0086 4.70687 22.0544 4.43931 21.9326C4.17175 21.8108 4 21.544 4 21.25V5.75ZM15.1553 8.44702C15.4482 8.15412 15.4482 7.67925 15.1553 7.38636C14.8624 7.09346 14.3876 7.09346 14.0947 7.38636L11.4583 10.0227L10.4053 8.96968C10.1124 8.67679 9.63756 8.67679 9.34467 8.96968C9.05178 9.26258 9.05178 9.73745 9.34467 10.0303L10.928 11.6137C11.0687 11.7543 11.2594 11.8334 11.4583 11.8334C11.6572 11.8334 11.848 11.7543 11.9887 11.6137L15.1553 8.44702ZM8.75 14C8.33579 14 8 14.3358 8 14.75C8 15.1642 8.33579 15.5 8.75 15.5H15.25C15.6642 15.5 16 15.1642 16 14.75C16 14.3358 15.6642 14 15.25 14H8.75Z\" fill=\"currentColor\"/>",
|
|
16064
|
-
"iconName": "receipt-check-2, ticket",
|
|
16065
|
-
"variant": {
|
|
16066
|
-
"join": "round",
|
|
16067
|
-
"filled": "on",
|
|
16068
|
-
"radius": "3",
|
|
16069
|
-
"stroke": "1.5"
|
|
16070
|
-
},
|
|
16071
|
-
"createdAt": "2025-02-15T21:11:33.829321+00:00",
|
|
16072
|
-
"packageName": "round-filled-radius-3-stroke-1.5",
|
|
16073
|
-
"componentName": "IconReceiptCheck2"
|
|
16074
|
-
},
|
|
16075
16075
|
{
|
|
16076
16076
|
"category": "Things",
|
|
16077
16077
|
"svg": "<path d=\"M14.252 4.5H12.752V6.03193C17.4374 6.43365 21.002 10.5874 21.002 16.2891V17.25C21.002 17.6642 20.6662 18 20.252 18H12.752V19.5H20.25C20.6642 19.5 21 19.8358 21 20.25C21 20.6642 20.6642 21 20.25 21H3.75C3.33579 21 3 20.6642 3 20.25C3 19.8358 3.33579 19.5 3.75 19.5H11.252V18H3.75195C3.33774 18 3.00195 17.6642 3.00195 17.25V16.2891C3.00195 10.5874 6.56654 6.43365 11.252 6.03193V4.5H9.75195C9.33774 4.5 9.00195 4.16421 9.00195 3.75C9.00195 3.33579 9.33774 3 9.75195 3H14.252C14.6662 3 15.002 3.33579 15.002 3.75C15.002 4.16421 14.6662 4.5 14.252 4.5Z\" fill=\"currentColor\"/>",
|
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"
|
|
@@ -1146,7 +1147,6 @@ export type CentralIconName =
|
|
|
1146
1147
|
| "IconRear"
|
|
1147
1148
|
| "IconReceiptBill"
|
|
1148
1149
|
| "IconReceiptCheck"
|
|
1149
|
-
| "IconReceiptCheck2"
|
|
1150
1150
|
| "IconReceiptionBell"
|
|
1151
1151
|
| "IconReceiptStorno"
|
|
1152
1152
|
| "IconReceiptTax"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-filled-radius-3-stroke-1.5",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.30",
|
|
4
4
|
"style": "round-filled-radius-3-stroke-1.5",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-3-stroke-1.5/IconHome';",
|
|
@@ -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": 69,
|
|
1179
1180
|
"icons": [
|
|
1180
1181
|
"IconAddToBasket",
|
|
1181
1182
|
"IconAddToBasket2",
|
|
@@ -1225,7 +1226,6 @@
|
|
|
1225
1226
|
"IconPound",
|
|
1226
1227
|
"IconReceiptBill",
|
|
1227
1228
|
"IconReceiptCheck",
|
|
1228
|
-
"IconReceiptCheck2",
|
|
1229
1229
|
"IconReceiptStorno",
|
|
1230
1230
|
"IconReceiptTax",
|
|
1231
1231
|
"IconRemoveFromBasket",
|
|
@@ -2564,6 +2564,7 @@
|
|
|
2564
2564
|
"IconImageAltText": "image-alt-text",
|
|
2565
2565
|
"IconImageAvatarSparkle": "image-avatar-sparkle, generated avatar, profile ai, magic avatar",
|
|
2566
2566
|
"IconImages1": "images-1, photos, pictures, shot",
|
|
2567
|
+
"IconImages1Alt": "images-1-alt, photos, pictures, shot",
|
|
2567
2568
|
"IconImages2": "images-2, photos, pictures, shot",
|
|
2568
2569
|
"IconImages3": "images-3, photos, pictures, shot",
|
|
2569
2570
|
"IconImages4": "images-4, photos, pictures, shot",
|
|
@@ -2899,7 +2900,6 @@
|
|
|
2899
2900
|
"IconRear": "rear, front-back, change-cam, lens",
|
|
2900
2901
|
"IconReceiptBill": "receipt-bill, purchase, invoice",
|
|
2901
2902
|
"IconReceiptCheck": "receipt-check, ticket",
|
|
2902
|
-
"IconReceiptCheck2": "receipt-check-2, ticket",
|
|
2903
2903
|
"IconReceiptionBell": "receiption-bell, concierge",
|
|
2904
2904
|
"IconReceiptStorno": "receipt-storno, close, remove",
|
|
2905
2905
|
"IconReceiptTax": "receipt-tax, discount",
|
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";
|
|
@@ -1147,7 +1148,6 @@ export { IconRecKeyframe, default as IconRecKeyframeDefault, } from "./IconRecKe
|
|
|
1147
1148
|
export { IconRecKeyframe2, default as IconRecKeyframe2Default, } from "./IconRecKeyframe2";
|
|
1148
1149
|
export { IconReceiptBill, default as IconReceiptBillDefault, } from "./IconReceiptBill";
|
|
1149
1150
|
export { IconReceiptCheck, default as IconReceiptCheckDefault, } from "./IconReceiptCheck";
|
|
1150
|
-
export { IconReceiptCheck2, default as IconReceiptCheck2Default, } from "./IconReceiptCheck2";
|
|
1151
1151
|
export { IconReceiptStorno, default as IconReceiptStornoDefault, } from "./IconReceiptStorno";
|
|
1152
1152
|
export { IconReceiptTax, default as IconReceiptTaxDefault, } from "./IconReceiptTax";
|
|
1153
1153
|
export { IconReceiptionBell, default as IconReceiptionBellDefault, } from "./IconReceiptionBell";
|