@central-icons-react-native/round-outlined-radius-0-stroke-1 1.1.29 → 1.1.31
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/IconBank/index.js +1 -1
- package/IconBank/index.js.map +1 -1
- package/IconBank/index.mjs +1 -1
- package/IconBank/index.mjs.map +1 -1
- package/IconBlock/index.js +1 -1
- package/IconBlock/index.js.map +1 -1
- package/IconBlock/index.mjs +1 -1
- package/IconBlock/index.mjs.map +1 -1
- package/IconBuildings/index.js +1 -1
- package/IconBuildings/index.js.map +1 -1
- package/IconBuildings/index.mjs +1 -1
- package/IconBuildings/index.mjs.map +1 -1
- package/IconCoinRupees/index.js +1 -1
- package/IconCoinRupees/index.js.map +1 -1
- package/IconCoinRupees/index.mjs +1 -1
- package/IconCoinRupees/index.mjs.map +1 -1
- package/IconCookies/index.js +1 -1
- package/IconCookies/index.js.map +1 -1
- package/IconCookies/index.mjs +1 -1
- package/IconCookies/index.mjs.map +1 -1
- 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/IconGarage/index.js +1 -1
- package/IconGarage/index.js.map +1 -1
- package/IconGarage/index.mjs +1 -1
- package/IconGarage/index.mjs.map +1 -1
- package/IconHomeRoof/index.js +1 -1
- package/IconHomeRoof/index.js.map +1 -1
- package/IconHomeRoof/index.mjs +1 -1
- package/IconHomeRoof/index.mjs.map +1 -1
- package/IconMall/index.js +1 -1
- package/IconMall/index.js.map +1 -1
- package/IconMall/index.mjs +1 -1
- package/IconMall/index.mjs.map +1 -1
- package/IconProgress25/index.d.ts +4 -0
- package/IconProgress25/index.js +2 -0
- package/IconProgress25/index.js.map +1 -0
- package/IconProgress25/index.mjs +2 -0
- package/IconProgress25/index.mjs.map +1 -0
- package/IconProgress50/index.d.ts +4 -0
- package/IconProgress50/index.js +2 -0
- package/IconProgress50/index.js.map +1 -0
- package/IconProgress50/index.mjs +2 -0
- package/IconProgress50/index.mjs.map +1 -0
- package/IconProgress75/index.d.ts +4 -0
- package/IconProgress75/index.js +2 -0
- package/IconProgress75/index.js.map +1 -0
- package/IconProgress75/index.mjs +2 -0
- package/IconProgress75/index.mjs.map +1 -0
- package/IconSchool/index.js +1 -1
- package/IconSchool/index.js.map +1 -1
- package/IconSchool/index.mjs +1 -1
- package/IconSchool/index.mjs.map +1 -1
- package/IconTruck/index.js +1 -1
- package/IconTruck/index.js.map +1 -1
- package/IconTruck/index.mjs +1 -1
- package/IconTruck/index.mjs.map +1 -1
- package/README.md +3 -1
- package/filtered-icons.json +53 -25
- package/icons/index.d.ts +3 -1
- package/icons-index.json +10 -6
- package/index.d.ts +3 -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 +33 -19
- 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/IconMall/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconMall/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 IconMall: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconMall/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 IconMall: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 11.5V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21.5 4.5H2.5V19.5H21.5V4.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.5 19.5V11.5H16.5V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMall;\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,EAAsCC,GAE/CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,gBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMall","props","React","CentralIconBase","IconMall_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(s=x(o,t))||s.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(I(r)):{},C(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>C(n({},"__esModule",{value:!0}),r);var h={};g(h,{IconProgress25:()=>i,default:()=>y});module.exports=v(h);var p=a(require("react"));var c=a(require("react")),m=require("react-native-svg"),f=({children:r,size:o=24,...e})=>c.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 l=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(l.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),p.default.createElement(l.Path,{d:"M20 12C20 7.58172 16.4183 4 12 4V12H20Z",fill:"currentColor"})),y=i;0&&(module.exports={IconProgress25});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconProgress25/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconProgress25: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n <Path d=\"M20 12C20 7.58172 16.4183 4 12 4V12H20Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconProgress25;\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,EAA6B,4BAEhBC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,EACtD,EAAAA,QAAA,cAAC,QAAK,EAAE,0CAA0C,KAAK,eAAe,CACxE,EAIGE,EAAQJ","names":["IconProgress25_exports","__export","IconProgress25","IconProgress25_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconProgress25","props","React","CentralIconBase","IconProgress25_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(l,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Circle as s,Path as C}from"react-native-svg";var a=o=>e.createElement(t,{...o},e.createElement(s,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),e.createElement(C,{d:"M20 12C20 7.58172 16.4183 4 12 4V12H20Z",fill:"currentColor"})),g=a;export{a as IconProgress25,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconProgress25/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconProgress25: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n <Path d=\"M20 12C20 7.58172 16.4183 4 12 4V12H20Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconProgress25;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,EACtDI,EAAA,cAACH,EAAA,CAAK,EAAE,0CAA0C,KAAK,eAAe,CACxE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconProgress25","props","React","CentralIconBase","IconProgress25_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(l=x(o,t))||l.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(I(r)):{},s(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>s(n({},"__esModule",{value:!0}),r);var h={};g(h,{IconProgress50:()=>i,default:()=>y});module.exports=v(h);var p=a(require("react"));var c=a(require("react")),m=require("react-native-svg"),f=({children:r,size:o=24,...e})=>c.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"),i=r=>p.default.createElement(f,{...r},p.default.createElement(C.Path,{d:"M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4V20Z",fill:"currentColor"}),p.default.createElement(C.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"})),y=i;0&&(module.exports={IconProgress50});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconProgress50/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconProgress50: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4V20Z\"\n fill=\"currentColor\"\n />\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconProgress50;\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,EAA6B,4BAEhBC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,mEACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,CACxD,EAIGE,EAAQJ","names":["IconProgress50_exports","__export","IconProgress50","IconProgress50_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconProgress50","props","React","CentralIconBase","IconProgress50_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Circle as l,Path as s}from"react-native-svg";var a=o=>e.createElement(t,{...o},e.createElement(s,{d:"M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4V20Z",fill:"currentColor"}),e.createElement(l,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"})),g=a;export{a as IconProgress50,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconProgress50/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconProgress50: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4V20Z\"\n fill=\"currentColor\"\n />\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconProgress50;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,mEACF,KAAK,eACP,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,CACxD,EAIGM,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconProgress50","props","React","CentralIconBase","IconProgress50_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(l=x(o,t))||l.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(I(r)):{},s(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>s(n({},"__esModule",{value:!0}),r);var h={};g(h,{IconProgress75:()=>i,default:()=>y});module.exports=v(h);var p=a(require("react"));var c=a(require("react")),m=require("react-native-svg"),f=({children:r,size:o=24,...e})=>c.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"),i=r=>p.default.createElement(f,{...r},p.default.createElement(C.Path,{d:"M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4V12H4C4 16.4183 7.58172 20 12 20Z",fill:"currentColor"}),p.default.createElement(C.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"})),y=i;0&&(module.exports={IconProgress75});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconProgress75/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconProgress75: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4V12H4C4 16.4183 7.58172 20 12 20Z\"\n fill=\"currentColor\"\n />\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconProgress75;\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,EAA6B,4BAEhBC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,gGACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,CACxD,EAIGE,EAAQJ","names":["IconProgress75_exports","__export","IconProgress75","IconProgress75_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconProgress75","props","React","CentralIconBase","IconProgress75_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(C,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Circle as l,Path as s}from"react-native-svg";var a=o=>e.createElement(t,{...o},e.createElement(s,{d:"M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4V12H4C4 16.4183 7.58172 20 12 20Z",fill:"currentColor"}),e.createElement(l,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"})),g=a;export{a as IconProgress75,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconProgress75/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconProgress75: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4V12H4C4 16.4183 7.58172 20 12 20Z\"\n fill=\"currentColor\"\n />\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconProgress75;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,gGACF,KAAK,eACP,EACAG,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,CACxD,EAIGM,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconProgress75","props","React","CentralIconBase","IconProgress75_default"]}
|
package/IconSchool/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var k=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(o,r)=>{for(var n in r)p(o,n,{get:r[n],enumerable:!0})},u=(o,r,n,i)=>{if(r&&typeof r=="object"||typeof r=="function")for(let s of L(r))!B.call(o,s)&&s!==n&&p(o,s,{get:()=>r[s],enumerable:!(i=m(r,s))||i.enumerable});return o};var d=(o,r,n)=>(n=o!=null?k(f(o)):{},u(r||!o||!o.__esModule?p(n,"default",{value:o,enumerable:!0}):n,o)),x=o=>u(p({},"__esModule",{value:!0}),o);var g={};I(g,{IconSchool:()=>C,default:()=>P});module.exports=x(g);var e=d(require("react"));var a=d(require("react")),c=require("react-native-svg"),l=({children:o,size:r=24,...n})=>a.default.createElement(c.Svg,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var t=require("react-native-svg"),C=o=>e.default.createElement(l,{...o},e.default.createElement(t.Path,{d:"M21.5 19.5V8.5H17.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M17.5 19.5V4.5H6.5V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M6.5 8.5H2.5V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M22.5 19.5H1.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M9.5 19.5V15.5H14.5V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),P=C;0&&(module.exports={IconSchool});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconSchool/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconSchool/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 IconSchool: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconSchool/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 IconSchool: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.5 19.5V8.5H17.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5 19.5V4.5H6.5V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.5 8.5H2.5V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M22.5 19.5H1.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 19.5V15.5H14.5V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSchool;\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,gBAAAE,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,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,sBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconSchool_exports","__export","IconSchool","IconSchool_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSchool","props","React","CentralIconBase","IconSchool_default"]}
|
package/IconSchool/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import r from"react";import p from"react";import{Svg as i}from"react-native-svg";var t=({children:e,size:o=24,...s})=>p.createElement(i,{...s,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{Path as n}from"react-native-svg";var u=e=>r.createElement(t,{...e},r.createElement(n,{d:"M21.5 19.5V8.5H17.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M17.5 19.5V4.5H6.5V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M6.5 8.5H2.5V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M22.5 19.5H1.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M9.5 19.5V15.5H14.5V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=u;export{u as IconSchool,B as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconSchool/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconSchool/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 IconSchool: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconSchool/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 IconSchool: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.5 19.5V8.5H17.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5 19.5V4.5H6.5V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.5 8.5H2.5V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M22.5 19.5H1.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 19.5V15.5H14.5V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSchool;\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,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,sBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2BACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSchool","props","React","CentralIconBase","IconSchool_default"]}
|
package/IconTruck/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var c=Object.create;var s=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var n in o)s(r,n,{get:o[n],enumerable:!0})},u=(r,o,n,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of f(o))!I.call(r,C)&&C!==n&&s(r,C,{get:()=>o[C],enumerable:!(p=k(o,C))||p.enumerable});return r};var i=(r,o,n)=>(n=r!=null?c(B(r)):{},u(o||!r||!r.__esModule?s(n,"default",{value:r,enumerable:!0}):n,r)),P=r=>u(s({},"__esModule",{value:!0}),r);var L={};x(L,{IconTruck:()=>a,default:()=>g});module.exports=P(L);var e=i(require("react"));var l=i(require("react")),m=require("react-native-svg"),d=({children:r,size:o=24,...n})=>l.default.createElement(m.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"),a=r=>e.default.createElement(d,{...r},e.default.createElement(t.Path,{d:"M9.39844 17C9.39844 18.3807 8.27915 19.5 6.89844 19.5C5.51773 19.5 4.39844 18.3807 4.39844 17C4.39844 15.6193 5.51773 14.5 6.89844 14.5C8.27915 14.5 9.39844 15.6193 9.39844 17Z",stroke:"currentColor",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M19.5 17C19.5 18.3807 18.3807 19.5 17 19.5C15.6193 19.5 14.5 18.3807 14.5 17C14.5 15.6193 15.6193 14.5 17 14.5C18.3807 14.5 19.5 15.6193 19.5 17Z",stroke:"currentColor",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M9.5 16.5H14.5",stroke:"currentColor",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M4.5 16.5H2.5V10.5L4.5 6.5H8.5V15",stroke:"currentColor",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M8.5 6.5V4.5H21.5V16.5H19",stroke:"currentColor",strokeLinejoin:"round"})),g=a;0&&(module.exports={IconTruck});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconTruck/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconTruck/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 IconTruck: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.
|
|
1
|
+
{"version":3,"sources":["../src/IconTruck/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 IconTruck: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.39844 17C9.39844 18.3807 8.27915 19.5 6.89844 19.5C5.51773 19.5 4.39844 18.3807 4.39844 17C4.39844 15.6193 5.51773 14.5 6.89844 14.5C8.27915 14.5 9.39844 15.6193 9.39844 17Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 17C19.5 18.3807 18.3807 19.5 17 19.5C15.6193 19.5 14.5 18.3807 14.5 17C14.5 15.6193 15.6193 14.5 17 14.5C18.3807 14.5 19.5 15.6193 19.5 17Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n <Path d=\"M9.5 16.5H14.5\" stroke=\"currentColor\" strokeLinejoin=\"round\" />\n <Path\n d=\"M4.5 16.5H2.5V10.5L4.5 6.5H8.5V15\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.5 6.5V4.5H21.5V16.5H19\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTruck;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,eAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAuCC,GAEhD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,mLACF,OAAO,eACP,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oJACF,OAAO,eACP,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,eAAe,QAAQ,EACtE,EAAAA,QAAA,cAAC,QACC,EAAE,oCACF,OAAO,eACP,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4BACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconTruck_exports","__export","IconTruck","IconTruck_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconTruck","props","React","CentralIconBase","IconTruck_default"]}
|
package/IconTruck/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import o from"react";import s from"react";import{Svg as p}from"react-native-svg";var t=({children:e,size:r=24,...C})=>s.createElement(p,{...C,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 u=e=>o.createElement(t,{...e},o.createElement(n,{d:"M9.39844 17C9.39844 18.3807 8.27915 19.5 6.89844 19.5C5.51773 19.5 4.39844 18.3807 4.39844 17C4.39844 15.6193 5.51773 14.5 6.89844 14.5C8.27915 14.5 9.39844 15.6193 9.39844 17Z",stroke:"currentColor",strokeLinejoin:"round"}),o.createElement(n,{d:"M19.5 17C19.5 18.3807 18.3807 19.5 17 19.5C15.6193 19.5 14.5 18.3807 14.5 17C14.5 15.6193 15.6193 14.5 17 14.5C18.3807 14.5 19.5 15.6193 19.5 17Z",stroke:"currentColor",strokeLinejoin:"round"}),o.createElement(n,{d:"M9.5 16.5H14.5",stroke:"currentColor",strokeLinejoin:"round"}),o.createElement(n,{d:"M4.5 16.5H2.5V10.5L4.5 6.5H8.5V15",stroke:"currentColor",strokeLinejoin:"round"}),o.createElement(n,{d:"M8.5 6.5V4.5H21.5V16.5H19",stroke:"currentColor",strokeLinejoin:"round"})),I=u;export{u as IconTruck,I as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconTruck/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconTruck/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 IconTruck: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.
|
|
1
|
+
{"version":3,"sources":["../src/IconTruck/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 IconTruck: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.39844 17C9.39844 18.3807 8.27915 19.5 6.89844 19.5C5.51773 19.5 4.39844 18.3807 4.39844 17C4.39844 15.6193 5.51773 14.5 6.89844 14.5C8.27915 14.5 9.39844 15.6193 9.39844 17Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.5 17C19.5 18.3807 18.3807 19.5 17 19.5C15.6193 19.5 14.5 18.3807 14.5 17C14.5 15.6193 15.6193 14.5 17 14.5C18.3807 14.5 19.5 15.6193 19.5 17Z\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n <Path d=\"M9.5 16.5H14.5\" stroke=\"currentColor\" strokeLinejoin=\"round\" />\n <Path\n d=\"M4.5 16.5H2.5V10.5L4.5 6.5H8.5V15\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.5 6.5V4.5H21.5V16.5H19\"\n stroke=\"currentColor\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTruck;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAuCC,GAEhDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,mLACF,OAAO,eACP,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oJACF,OAAO,eACP,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,eAAe,QAAQ,EACtEG,EAAA,cAACH,EAAA,CACC,EAAE,oCACF,OAAO,eACP,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4BACF,OAAO,eACP,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconTruck","props","React","CentralIconBase","IconTruck_default"]}
|
package/README.md
CHANGED
|
@@ -956,6 +956,9 @@ Below is a complete list of available icons:
|
|
|
956
956
|
- IconPlanning
|
|
957
957
|
- IconPlusLarge
|
|
958
958
|
- IconPlusSmall
|
|
959
|
+
- IconProgress25
|
|
960
|
+
- IconProgress50
|
|
961
|
+
- IconProgress75
|
|
959
962
|
- IconQrCode
|
|
960
963
|
- IconQuickSearch
|
|
961
964
|
- IconReview
|
|
@@ -1306,7 +1309,6 @@ Below is a complete list of available icons:
|
|
|
1306
1309
|
- IconPound
|
|
1307
1310
|
- IconReceiptBill
|
|
1308
1311
|
- IconReceiptCheck
|
|
1309
|
-
- IconReceiptCheck2
|
|
1310
1312
|
- IconReceiptStorno
|
|
1311
1313
|
- IconReceiptTax
|
|
1312
1314
|
- IconRemoveFromBasket
|
package/filtered-icons.json
CHANGED
|
@@ -2270,7 +2270,7 @@
|
|
|
2270
2270
|
},
|
|
2271
2271
|
{
|
|
2272
2272
|
"category": "Building",
|
|
2273
|
-
"svg": "<path d=\"
|
|
2273
|
+
"svg": "<path d=\"M12 2L2.5 7.5V9.5H21.5V7.5L12 2Z\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M21.5 20.5H2.5L3.5 17.5H20.5L21.5 20.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M19.5 9.5V17.5\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M15.5 17.5V9.5\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M4.5 9.5V17.5\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M8.5 17.5V9.5\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>",
|
|
2274
2274
|
"iconName": "bank",
|
|
2275
2275
|
"variant": {
|
|
2276
2276
|
"join": "round",
|
|
@@ -2970,7 +2970,7 @@
|
|
|
2970
2970
|
},
|
|
2971
2971
|
{
|
|
2972
2972
|
"category": "Building",
|
|
2973
|
-
"svg": "<path d=\"
|
|
2973
|
+
"svg": "<path d=\"M21.5 20.5H2.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.5 7.5H10.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.5 7.5H15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.5 11.5H10.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.5 11.5H15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.5 15.5H10.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.5 15.5H15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.5 20.5V3.5H19.5V20.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
2974
2974
|
"iconName": "block, workspace",
|
|
2975
2975
|
"variant": {
|
|
2976
2976
|
"join": "round",
|
|
@@ -4006,7 +4006,7 @@
|
|
|
4006
4006
|
},
|
|
4007
4007
|
{
|
|
4008
4008
|
"category": "Building",
|
|
4009
|
-
"svg": "<path d=\"
|
|
4009
|
+
"svg": "<path d=\"M10.5 8.5H7.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5 12.5H10.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.5 7.5H20.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.5 19.5V3.5H14.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M22.5 19.5H1.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
4010
4010
|
"iconName": "buildings, company, workspace",
|
|
4011
4011
|
"variant": {
|
|
4012
4012
|
"join": "round",
|
|
@@ -6526,7 +6526,7 @@
|
|
|
6526
6526
|
},
|
|
6527
6527
|
{
|
|
6528
6528
|
"category": "Shopping & Payment",
|
|
6529
|
-
"svg": "<path d=\"M7.5 10.5L16.5 10.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 7.5H11.74C13.3969 7.5 14.74 8.84315 14.74 10.
|
|
6529
|
+
"svg": "<path d=\"M7.5 10.5L16.5 10.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 7.5H11.74C13.3969 7.5 14.74 8.84315 14.74 10.5C14.74 12.1569 13.3969 13.5 11.74 13.5H9.5L14.5 17.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
6530
6530
|
"iconName": "coin-rupees, currency, money",
|
|
6531
6531
|
"variant": {
|
|
6532
6532
|
"join": "round",
|
|
@@ -6876,7 +6876,7 @@
|
|
|
6876
6876
|
},
|
|
6877
6877
|
{
|
|
6878
6878
|
"category": "Food",
|
|
6879
|
-
"svg": "<path
|
|
6879
|
+
"svg": "<path d=\"M16.2555 6.68954C14.4485 6.44828 13.0547 4.9008 13.0547 3.02778C13.0547 2.86972 13.0646 2.71398 13.0839 2.56115C12.7282 2.52075 12.3665 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 11.1913 21.399 10.4063 21.2088 9.65678C20.8067 9.80685 20.3715 9.88889 19.9171 9.88889C18.0446 9.88889 16.4975 8.49582 16.2555 6.68954Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M10 8.5C10 9.32843 9.32843 10 8.5 10C7.67157 10 7 9.32843 7 8.5C7 7.67157 7.67157 7 8.5 7C9.32843 7 10 7.67157 10 8.5Z\" fill=\"currentColor\"/><path d=\"M14 11.5C14 12.3284 13.3284 13 12.5 13C11.6716 13 11 12.3284 11 11.5C11 10.6716 11.6716 10 12.5 10C13.3284 10 14 10.6716 14 11.5Z\" fill=\"currentColor\"/><path d=\"M18 14C18 14.5523 17.5523 15 17 15C16.4477 15 16 14.5523 16 14C16 13.4477 16.4477 13 17 13C17.5523 13 18 13.4477 18 14Z\" fill=\"currentColor\"/><path d=\"M13 16.5C13 17.3284 12.3284 18 11.5 18C10.6716 18 10 17.3284 10 16.5C10 15.6716 10.6716 15 11.5 15C12.3284 15 13 15.6716 13 16.5Z\" fill=\"currentColor\"/><path d=\"M8 14C8 14.5523 7.55228 15 7 15C6.44772 15 6 14.5523 6 14C6 13.4477 6.44772 13 7 13C7.55228 13 8 13.4477 8 14Z\" fill=\"currentColor\"/>",
|
|
6880
6880
|
"iconName": "cookies",
|
|
6881
6881
|
"variant": {
|
|
6882
6882
|
"join": "round",
|
|
@@ -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",
|
|
@@ -10306,7 +10306,7 @@
|
|
|
10306
10306
|
},
|
|
10307
10307
|
{
|
|
10308
10308
|
"category": "Building",
|
|
10309
|
-
"svg": "<path d=\"
|
|
10309
|
+
"svg": "<path d=\"M21.5 19.5H2.5V8.5L12 3.5L21.5 8.5V19.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M6.5 15.5H17.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.5 19.5V11.5H6.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
10310
10310
|
"iconName": "garage",
|
|
10311
10311
|
"variant": {
|
|
10312
10312
|
"join": "round",
|
|
@@ -11174,7 +11174,7 @@
|
|
|
11174
11174
|
},
|
|
11175
11175
|
{
|
|
11176
11176
|
"category": "Building",
|
|
11177
|
-
"svg": "<path d=\"
|
|
11177
|
+
"svg": "<path d=\"M2 9.5L12 2.19879L22 9.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.5 7.67468V20.5H19.5L19.5 7.67468\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
11178
11178
|
"iconName": "home-roof, house",
|
|
11179
11179
|
"variant": {
|
|
11180
11180
|
"join": "round",
|
|
@@ -12854,7 +12854,7 @@
|
|
|
12854
12854
|
},
|
|
12855
12855
|
{
|
|
12856
12856
|
"category": "Building",
|
|
12857
|
-
"svg": "<path d=\"
|
|
12857
|
+
"svg": "<path d=\"M12 11.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.5 4.5H2.5V19.5H21.5V4.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5 19.5V11.5H16.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
12858
12858
|
"iconName": "mall, store, shop, business",
|
|
12859
12859
|
"variant": {
|
|
12860
12860
|
"join": "round",
|
|
@@ -15722,6 +15722,48 @@
|
|
|
15722
15722
|
"packageName": "round-outlined-radius-0-stroke-1",
|
|
15723
15723
|
"componentName": "IconProducthunt"
|
|
15724
15724
|
},
|
|
15725
|
+
{
|
|
15726
|
+
"category": "Interface General",
|
|
15727
|
+
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/><path d=\"M20 12C20 7.58172 16.4183 4 12 4V12H20Z\" fill=\"currentColor\"/>",
|
|
15728
|
+
"iconName": "progress-25, ideas, open, status, task",
|
|
15729
|
+
"variant": {
|
|
15730
|
+
"join": "round",
|
|
15731
|
+
"filled": "off",
|
|
15732
|
+
"radius": "0",
|
|
15733
|
+
"stroke": "1"
|
|
15734
|
+
},
|
|
15735
|
+
"createdAt": "2025-11-14T21:00:57.563615+00:00",
|
|
15736
|
+
"packageName": "round-outlined-radius-0-stroke-1",
|
|
15737
|
+
"componentName": "IconProgress25"
|
|
15738
|
+
},
|
|
15739
|
+
{
|
|
15740
|
+
"category": "Interface General",
|
|
15741
|
+
"svg": "<path d=\"M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4V20Z\" fill=\"currentColor\"/><circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/>",
|
|
15742
|
+
"iconName": "progress-50, ideas, open, status, tas",
|
|
15743
|
+
"variant": {
|
|
15744
|
+
"join": "round",
|
|
15745
|
+
"filled": "off",
|
|
15746
|
+
"radius": "0",
|
|
15747
|
+
"stroke": "1"
|
|
15748
|
+
},
|
|
15749
|
+
"createdAt": "2025-11-14T21:00:57.563615+00:00",
|
|
15750
|
+
"packageName": "round-outlined-radius-0-stroke-1",
|
|
15751
|
+
"componentName": "IconProgress50"
|
|
15752
|
+
},
|
|
15753
|
+
{
|
|
15754
|
+
"category": "Interface General",
|
|
15755
|
+
"svg": "<path d=\"M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4V12H4C4 16.4183 7.58172 20 12 20Z\" fill=\"currentColor\"/><circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/>",
|
|
15756
|
+
"iconName": "progress-75, ideas, open, status, tas",
|
|
15757
|
+
"variant": {
|
|
15758
|
+
"join": "round",
|
|
15759
|
+
"filled": "off",
|
|
15760
|
+
"radius": "0",
|
|
15761
|
+
"stroke": "1"
|
|
15762
|
+
},
|
|
15763
|
+
"createdAt": "2025-11-14T21:00:57.563615+00:00",
|
|
15764
|
+
"packageName": "round-outlined-radius-0-stroke-1",
|
|
15765
|
+
"componentName": "IconProgress75"
|
|
15766
|
+
},
|
|
15725
15767
|
{
|
|
15726
15768
|
"category": "AI & Magic",
|
|
15727
15769
|
"svg": "<path d=\"M6.5 4.5H2.5V8.5M17.5 4.5H21.5V8.5M21.5 15.5V19.5H17.5M6.5 19.5H2.5V15.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5 9.5H16.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5 14.5H14.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -16072,20 +16114,6 @@
|
|
|
16072
16114
|
"packageName": "round-outlined-radius-0-stroke-1",
|
|
16073
16115
|
"componentName": "IconReceiptCheck"
|
|
16074
16116
|
},
|
|
16075
|
-
{
|
|
16076
|
-
"category": "Shopping & Payment",
|
|
16077
|
-
"svg": "<path d=\"M8.5 14.5H15.5M9.75 9.50003L11.4167 11.1667L14.75 7.83337M4.5 2.5H19.5V21.5L17 19L14.5 21.5L12 19L9.5 21.5L7 19L4.5 21.5V2.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
16078
|
-
"iconName": "receipt-check-2, ticket",
|
|
16079
|
-
"variant": {
|
|
16080
|
-
"join": "round",
|
|
16081
|
-
"filled": "off",
|
|
16082
|
-
"radius": "0",
|
|
16083
|
-
"stroke": "1"
|
|
16084
|
-
},
|
|
16085
|
-
"createdAt": "2025-02-15T21:11:33.829321+00:00",
|
|
16086
|
-
"packageName": "round-outlined-radius-0-stroke-1",
|
|
16087
|
-
"componentName": "IconReceiptCheck2"
|
|
16088
|
-
},
|
|
16089
16117
|
{
|
|
16090
16118
|
"category": "Things",
|
|
16091
16119
|
"svg": "<path d=\"M12 6.5C7.30558 6.5 3.5 10.4844 3.5 16.3281V17.5H20.5V16.3281C20.5 10.4844 16.6944 6.5 12 6.5ZM12 6.5V3.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.49609 20.5H20.4961\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 17.5V20.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 3.5H14.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -16746,7 +16774,7 @@
|
|
|
16746
16774
|
},
|
|
16747
16775
|
{
|
|
16748
16776
|
"category": "Building",
|
|
16749
|
-
"svg": "<path d=\"
|
|
16777
|
+
"svg": "<path d=\"M21.5 19.5V8.5H17.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.5 19.5V4.5H6.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.5 8.5H2.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M22.5 19.5H1.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.5 19.5V15.5H14.5V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
16750
16778
|
"iconName": "school, building",
|
|
16751
16779
|
"variant": {
|
|
16752
16780
|
"join": "round",
|
|
@@ -20470,7 +20498,7 @@
|
|
|
20470
20498
|
},
|
|
20471
20499
|
{
|
|
20472
20500
|
"category": "Shopping & Payment",
|
|
20473
|
-
"svg": "<path d=\"M9.
|
|
20501
|
+
"svg": "<path d=\"M9.39844 17C9.39844 18.3807 8.27915 19.5 6.89844 19.5C5.51773 19.5 4.39844 18.3807 4.39844 17C4.39844 15.6193 5.51773 14.5 6.89844 14.5C8.27915 14.5 9.39844 15.6193 9.39844 17Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M19.5 17C19.5 18.3807 18.3807 19.5 17 19.5C15.6193 19.5 14.5 18.3807 14.5 17C14.5 15.6193 15.6193 14.5 17 14.5C18.3807 14.5 19.5 15.6193 19.5 17Z\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M9.5 16.5H14.5\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M4.5 16.5H2.5V10.5L4.5 6.5H8.5V15\" stroke=\"currentColor\" stroke-linejoin=\"round\"/><path d=\"M8.5 6.5V4.5H21.5V16.5H19\" stroke=\"currentColor\" stroke-linejoin=\"round\"/>",
|
|
20474
20502
|
"iconName": "truck, delivery",
|
|
20475
20503
|
"variant": {
|
|
20476
20504
|
"join": "round",
|
package/icons/index.d.ts
CHANGED
|
@@ -1122,6 +1122,9 @@ export type CentralIconName =
|
|
|
1122
1122
|
| "IconPrinter"
|
|
1123
1123
|
| "IconProcessor"
|
|
1124
1124
|
| "IconProducthunt"
|
|
1125
|
+
| "IconProgress25"
|
|
1126
|
+
| "IconProgress50"
|
|
1127
|
+
| "IconProgress75"
|
|
1125
1128
|
| "IconPrompt"
|
|
1126
1129
|
| "IconPrompt1"
|
|
1127
1130
|
| "IconPromptSuggestion"
|
|
@@ -1147,7 +1150,6 @@ export type CentralIconName =
|
|
|
1147
1150
|
| "IconRear"
|
|
1148
1151
|
| "IconReceiptBill"
|
|
1149
1152
|
| "IconReceiptCheck"
|
|
1150
|
-
| "IconReceiptCheck2"
|
|
1151
1153
|
| "IconReceiptionBell"
|
|
1152
1154
|
| "IconReceiptStorno"
|
|
1153
1155
|
| "IconReceiptTax"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-0-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.31",
|
|
4
4
|
"style": "round-outlined-radius-0-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-0-stroke-1/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1565,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 44,
|
|
@@ -751,7 +751,7 @@
|
|
|
751
751
|
]
|
|
752
752
|
},
|
|
753
753
|
"Interface General": {
|
|
754
|
-
"count":
|
|
754
|
+
"count": 164,
|
|
755
755
|
"icons": [
|
|
756
756
|
"IconAnchor1",
|
|
757
757
|
"IconAnchor2",
|
|
@@ -860,6 +860,9 @@
|
|
|
860
860
|
"IconPlanning",
|
|
861
861
|
"IconPlusLarge",
|
|
862
862
|
"IconPlusSmall",
|
|
863
|
+
"IconProgress25",
|
|
864
|
+
"IconProgress50",
|
|
865
|
+
"IconProgress75",
|
|
863
866
|
"IconQrCode",
|
|
864
867
|
"IconQuickSearch",
|
|
865
868
|
"IconReview",
|
|
@@ -1176,7 +1179,7 @@
|
|
|
1176
1179
|
]
|
|
1177
1180
|
},
|
|
1178
1181
|
"Shopping & Payment": {
|
|
1179
|
-
"count":
|
|
1182
|
+
"count": 69,
|
|
1180
1183
|
"icons": [
|
|
1181
1184
|
"IconAddToBasket",
|
|
1182
1185
|
"IconAddToBasket2",
|
|
@@ -1226,7 +1229,6 @@
|
|
|
1226
1229
|
"IconPound",
|
|
1227
1230
|
"IconReceiptBill",
|
|
1228
1231
|
"IconReceiptCheck",
|
|
1229
|
-
"IconReceiptCheck2",
|
|
1230
1232
|
"IconReceiptStorno",
|
|
1231
1233
|
"IconReceiptTax",
|
|
1232
1234
|
"IconRemoveFromBasket",
|
|
@@ -2876,6 +2878,9 @@
|
|
|
2876
2878
|
"IconPrinter": "printer, print",
|
|
2877
2879
|
"IconProcessor": "processor, chip",
|
|
2878
2880
|
"IconProducthunt": "producthunt",
|
|
2881
|
+
"IconProgress25": "progress-25, ideas, open, status, task",
|
|
2882
|
+
"IconProgress50": "progress-50, ideas, open, status, tas",
|
|
2883
|
+
"IconProgress75": "progress-75, ideas, open, status, tas",
|
|
2879
2884
|
"IconPrompt": "prompt, scan-text",
|
|
2880
2885
|
"IconPrompt1": "prompt, vibe-designing, box-sparkle",
|
|
2881
2886
|
"IconPromptSuggestion": "prompt-suggestion, auto-prompt",
|
|
@@ -2901,7 +2906,6 @@
|
|
|
2901
2906
|
"IconRear": "rear, front-back, change-cam, lens",
|
|
2902
2907
|
"IconReceiptBill": "receipt-bill, purchase, invoice",
|
|
2903
2908
|
"IconReceiptCheck": "receipt-check, ticket",
|
|
2904
|
-
"IconReceiptCheck2": "receipt-check-2, ticket",
|
|
2905
2909
|
"IconReceiptionBell": "receiption-bell, concierge",
|
|
2906
2910
|
"IconReceiptStorno": "receipt-storno, close, remove",
|
|
2907
2911
|
"IconReceiptTax": "receipt-tax, discount",
|
package/index.d.ts
CHANGED
|
@@ -1121,6 +1121,9 @@ export { IconPowerPlant, default as IconPowerPlantDefault, } from "./IconPowerPl
|
|
|
1121
1121
|
export { IconPrinter, default as IconPrinterDefault } from "./IconPrinter";
|
|
1122
1122
|
export { IconProcessor, default as IconProcessorDefault, } from "./IconProcessor";
|
|
1123
1123
|
export { IconProducthunt, default as IconProducthuntDefault, } from "./IconProducthunt";
|
|
1124
|
+
export { IconProgress25, default as IconProgress25Default, } from "./IconProgress25";
|
|
1125
|
+
export { IconProgress50, default as IconProgress50Default, } from "./IconProgress50";
|
|
1126
|
+
export { IconProgress75, default as IconProgress75Default, } from "./IconProgress75";
|
|
1124
1127
|
export { IconPrompt, default as IconPromptDefault } from "./IconPrompt";
|
|
1125
1128
|
export { IconPrompt1, default as IconPrompt1Default } from "./IconPrompt1";
|
|
1126
1129
|
export { IconPromptSuggestion, default as IconPromptSuggestionDefault, } from "./IconPromptSuggestion";
|
|
@@ -1148,7 +1151,6 @@ export { IconRecKeyframe, default as IconRecKeyframeDefault, } from "./IconRecKe
|
|
|
1148
1151
|
export { IconRecKeyframe2, default as IconRecKeyframe2Default, } from "./IconRecKeyframe2";
|
|
1149
1152
|
export { IconReceiptBill, default as IconReceiptBillDefault, } from "./IconReceiptBill";
|
|
1150
1153
|
export { IconReceiptCheck, default as IconReceiptCheckDefault, } from "./IconReceiptCheck";
|
|
1151
|
-
export { IconReceiptCheck2, default as IconReceiptCheck2Default, } from "./IconReceiptCheck2";
|
|
1152
1154
|
export { IconReceiptStorno, default as IconReceiptStornoDefault, } from "./IconReceiptStorno";
|
|
1153
1155
|
export { IconReceiptTax, default as IconReceiptTaxDefault, } from "./IconReceiptTax";
|
|
1154
1156
|
export { IconReceiptionBell, default as IconReceiptionBellDefault, } from "./IconReceiptionBell";
|