@central-icons-react-native/round-outlined-radius-1-stroke-1.5 1.1.170 → 1.1.171
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/IconBaking/index.d.ts +4 -0
- package/IconBaking/index.js +2 -0
- package/IconBaking/index.js.map +1 -0
- package/IconBaking/index.mjs +2 -0
- package/IconBaking/index.mjs.map +1 -0
- package/IconPin2/index.d.ts +4 -0
- package/IconPin2/index.js +2 -0
- package/IconPin2/index.js.map +1 -0
- package/IconPin2/index.mjs +2 -0
- package/IconPin2/index.mjs.map +1 -0
- package/IconUnpin2/index.d.ts +4 -0
- package/IconUnpin2/index.js +2 -0
- package/IconUnpin2/index.js.map +1 -0
- package/IconUnpin2/index.mjs +2 -0
- package/IconUnpin2/index.mjs.map +1 -0
- package/README.md +3 -0
- package/filtered-icons.json +42 -0
- package/icons/index.d.ts +3 -0
- package/icons-index.json +10 -4
- package/index.d.ts +3 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +21 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of f(o))!h.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(i=m(o,t))||i.enumerable});return r};var d=(r,o,e)=>(e=r!=null?l(B(r)):{},C(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),L=r=>C(p({},"__esModule",{value:!0}),r);var x={};I(x,{IconBaking:()=>c,default:()=>g});module.exports=L(x);var n=d(require("react"));var u=d(require("react")),a=require("react-native-svg"),k=({children:r,size:o=24,...e})=>u.default.createElement(a.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 s=require("react-native-svg"),c=r=>n.default.createElement(k,{...r},n.default.createElement(s.Path,{d:"M20.25 4.75H3.75C3.19772 4.75 2.75 5.19771 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.25V5.75C21.25 5.19772 20.8023 4.75 20.25 4.75Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M7.88901 8.75C4.56366 11.2678 10.2377 12.7322 6.91235 15.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M12.4867 8.75C9.16132 11.2678 14.8354 12.7322 11.51 15.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M17.0882 8.75C13.7629 11.2678 19.4369 12.7322 16.1116 15.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),g=c;0&&(module.exports={IconBaking});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBaking/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 IconBaking: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20.25 4.75H3.75C3.19772 4.75 2.75 5.19771 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.25V5.75C21.25 5.19772 20.8023 4.75 20.25 4.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.88901 8.75C4.56366 11.2678 10.2377 12.7322 6.91235 15.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.4867 8.75C9.16132 11.2678 14.8354 12.7322 11.51 15.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.0882 8.75C13.7629 11.2678 19.4369 12.7322 16.1116 15.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBaking;\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,6LACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconBaking_exports","__export","IconBaking","IconBaking_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBaking","props","React","CentralIconBase","IconBaking_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as i}from"react-native-svg";var t=({children:n,size:r=24,...s})=>p.createElement(i,{...s,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var C=n=>o.createElement(t,{...n},o.createElement(e,{d:"M20.25 4.75H3.75C3.19772 4.75 2.75 5.19771 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.25V5.75C21.25 5.19772 20.8023 4.75 20.25 4.75Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M7.88901 8.75C4.56366 11.2678 10.2377 12.7322 6.91235 15.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M12.4867 8.75C9.16132 11.2678 14.8354 12.7322 11.51 15.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M17.0882 8.75C13.7629 11.2678 19.4369 12.7322 16.1116 15.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),h=C;export{C as IconBaking,h as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBaking/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 IconBaking: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20.25 4.75H3.75C3.19772 4.75 2.75 5.19771 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.25V5.75C21.25 5.19772 20.8023 4.75 20.25 4.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7.88901 8.75C4.56366 11.2678 10.2377 12.7322 6.91235 15.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12.4867 8.75C9.16132 11.2678 14.8354 12.7322 11.51 15.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.0882 8.75C13.7629 11.2678 19.4369 12.7322 16.1116 15.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBaking;\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,6LACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,4DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBaking","props","React","CentralIconBase","IconBaking_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var d=(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 I(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(s=B(o,e))||s.enumerable});return r};var l=(r,o,t)=>(t=r!=null?u(P(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var v={};d(v,{IconPin2:()=>f,default:()=>h});module.exports=g(v);var C=l(require("react"));var m=l(require("react")),i=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(i.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(c,{...r},C.default.createElement(p.Path,{d:"M11.25 20.3974V15H12.75V20.3974C12.75 20.4651 12.7362 20.5321 12.7096 20.5943L12.2298 21.7138C12.1432 21.9159 11.8568 21.9159 11.7702 21.7138L11.2904 20.5943C11.2638 20.5321 11.25 20.4651 11.25 20.3974Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M15.75 8.48044C15.75 8.83025 15.936 9.15042 16.2202 9.35427C17.7994 10.4867 18.9048 12.2377 19.182 14.253C19.2573 14.8001 18.8023 15.25 18.25 15.25H5.74999C5.19771 15.25 4.74273 14.8001 4.81799 14.253C5.09517 12.2377 6.2006 10.4867 7.77974 9.35427C8.06402 9.15042 8.24999 8.83025 8.24999 8.48044V3.75C8.24999 3.19772 8.69771 2.75 9.24999 2.75H14.75C15.3023 2.75 15.75 3.19772 15.75 3.75V8.48044Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"})),h=f;0&&(module.exports={IconPin2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPin2/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 IconPin2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.25 20.3974V15H12.75V20.3974C12.75 20.4651 12.7362 20.5321 12.7096 20.5943L12.2298 21.7138C12.1432 21.9159 11.8568 21.9159 11.7702 21.7138L11.2904 20.5943C11.2638 20.5321 11.25 20.4651 11.25 20.3974Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.75 8.48044C15.75 8.83025 15.936 9.15042 16.2202 9.35427C17.7994 10.4867 18.9048 12.2377 19.182 14.253C19.2573 14.8001 18.8023 15.25 18.25 15.25H5.74999C5.19771 15.25 4.74273 14.8001 4.81799 14.253C5.09517 12.2377 6.2006 10.4867 7.77974 9.35427C8.06402 9.15042 8.24999 8.83025 8.24999 8.48044V3.75C8.24999 3.19772 8.69771 2.75 9.24999 2.75H14.75C15.3023 2.75 15.75 3.19772 15.75 3.75V8.48044Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPin2;\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,cAAAE,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,EAAsCC,GAE/C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,6MACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8YACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconPin2_exports","__export","IconPin2","IconPin2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPin2","props","React","CentralIconBase","IconPin2_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:"M11.25 20.3974V15H12.75V20.3974C12.75 20.4651 12.7362 20.5321 12.7096 20.5943L12.2298 21.7138C12.1432 21.9159 11.8568 21.9159 11.7702 21.7138L11.2904 20.5943C11.2638 20.5321 11.25 20.4651 11.25 20.3974Z",fill:"currentColor"}),t.createElement(n,{d:"M15.75 8.48044C15.75 8.83025 15.936 9.15042 16.2202 9.35427C17.7994 10.4867 18.9048 12.2377 19.182 14.253C19.2573 14.8001 18.8023 15.25 18.25 15.25H5.74999C5.19771 15.25 4.74273 14.8001 4.81799 14.253C5.09517 12.2377 6.2006 10.4867 7.77974 9.35427C8.06402 9.15042 8.24999 8.83025 8.24999 8.48044V3.75C8.24999 3.19772 8.69771 2.75 9.24999 2.75H14.75C15.3023 2.75 15.75 3.19772 15.75 3.75V8.48044Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"})),x=a;export{a as IconPin2,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPin2/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 IconPin2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.25 20.3974V15H12.75V20.3974C12.75 20.4651 12.7362 20.5321 12.7096 20.5943L12.2298 21.7138C12.1432 21.9159 11.8568 21.9159 11.7702 21.7138L11.2904 20.5943C11.2638 20.5321 11.25 20.4651 11.25 20.3974Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15.75 8.48044C15.75 8.83025 15.936 9.15042 16.2202 9.35427C17.7994 10.4867 18.9048 12.2377 19.182 14.253C19.2573 14.8001 18.8023 15.25 18.25 15.25H5.74999C5.19771 15.25 4.74273 14.8001 4.81799 14.253C5.09517 12.2377 6.2006 10.4867 7.77974 9.35427C8.06402 9.15042 8.24999 8.83025 8.24999 8.48044V3.75C8.24999 3.19772 8.69771 2.75 9.24999 2.75H14.75C15.3023 2.75 15.75 3.19772 15.75 3.75V8.48044Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPin2;\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,6MACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8YACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPin2","props","React","CentralIconBase","IconPin2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)p(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))!k.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(s=f(o,e))||s.enumerable});return r};var l=(r,o,t)=>(t=r!=null?d(I(r)):{},a(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),L=r=>a(p({},"__esModule",{value:!0}),r);var g={};x(g,{IconUnpin2:()=>u,default:()=>P});module.exports=L(g);var n=l(require("react"));var i=l(require("react")),m=require("react-native-svg"),c=({children:r,size:o=24,...t})=>i.default.createElement(m.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 C=require("react-native-svg"),u=r=>n.default.createElement(c,{...r},n.default.createElement(C.Path,{d:"M11.25 20.3974V15H12.75V20.3974C12.75 20.4651 12.7362 20.5321 12.7096 20.5943L12.2298 21.7138C12.1432 21.9159 11.8568 21.9159 11.7702 21.7138L11.2904 20.5943C11.2638 20.5321 11.25 20.4651 11.25 20.3974Z",fill:"currentColor"}),n.default.createElement(C.Path,{d:"M3.75 2.26953L19.25 19.2495",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),n.default.createElement(C.Path,{d:"M9 8.7L8.25 9.04395C6.1521 10.3143 4.75 12.6184 4.75 15.25H15.5M19.2458 15C19.1601 12.4729 17.7812 10.2739 15.75 9.04395V3.75C15.75 3.19772 15.3023 2.75 14.75 2.75H9.25C8.95133 2.75 8.68324 2.88094 8.5 3.08854",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),P=u;0&&(module.exports={IconUnpin2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconUnpin2/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 IconUnpin2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.25 20.3974V15H12.75V20.3974C12.75 20.4651 12.7362 20.5321 12.7096 20.5943L12.2298 21.7138C12.1432 21.9159 11.8568 21.9159 11.7702 21.7138L11.2904 20.5943C11.2638 20.5321 11.25 20.4651 11.25 20.3974Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M3.75 2.26953L19.25 19.2495\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M9 8.7L8.25 9.04395C6.1521 10.3143 4.75 12.6184 4.75 15.25H15.5M19.2458 15C19.1601 12.4729 17.7812 10.2739 15.75 9.04395V3.75C15.75 3.19772 15.3023 2.75 14.75 2.75H9.25C8.95133 2.75 8.68324 2.88094 8.5 3.08854\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUnpin2;\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,6MACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8BACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oNACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconUnpin2_exports","__export","IconUnpin2","IconUnpin2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconUnpin2","props","React","CentralIconBase","IconUnpin2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import C from"react";import{Svg as s}from"react-native-svg";var n=({children:t,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"},t);import{Path as e}from"react-native-svg";var a=t=>o.createElement(n,{...t},o.createElement(e,{d:"M11.25 20.3974V15H12.75V20.3974C12.75 20.4651 12.7362 20.5321 12.7096 20.5943L12.2298 21.7138C12.1432 21.9159 11.8568 21.9159 11.7702 21.7138L11.2904 20.5943C11.2638 20.5321 11.25 20.4651 11.25 20.3974Z",fill:"currentColor"}),o.createElement(e,{d:"M3.75 2.26953L19.25 19.2495",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"}),o.createElement(e,{d:"M9 8.7L8.25 9.04395C6.1521 10.3143 4.75 12.6184 4.75 15.25H15.5M19.2458 15C19.1601 12.4729 17.7812 10.2739 15.75 9.04395V3.75C15.75 3.19772 15.3023 2.75 14.75 2.75H9.25C8.95133 2.75 8.68324 2.88094 8.5 3.08854",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),k=a;export{a as IconUnpin2,k as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconUnpin2/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 IconUnpin2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M11.25 20.3974V15H12.75V20.3974C12.75 20.4651 12.7362 20.5321 12.7096 20.5943L12.2298 21.7138C12.1432 21.9159 11.8568 21.9159 11.7702 21.7138L11.2904 20.5943C11.2638 20.5321 11.25 20.4651 11.25 20.3974Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M3.75 2.26953L19.25 19.2495\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M9 8.7L8.25 9.04395C6.1521 10.3143 4.75 12.6184 4.75 15.25H15.5M19.2458 15C19.1601 12.4729 17.7812 10.2739 15.75 9.04395V3.75C15.75 3.19772 15.3023 2.75 14.75 2.75H9.25C8.95133 2.75 8.68324 2.88094 8.5 3.08854\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconUnpin2;\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,6MACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8BACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oNACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconUnpin2","props","React","CentralIconBase","IconUnpin2_default"]}
|
package/README.md
CHANGED
|
@@ -876,6 +876,7 @@ Below is a complete list of available icons:
|
|
|
876
876
|
- IconAppleNewton
|
|
877
877
|
- IconApples
|
|
878
878
|
- IconAvocado
|
|
879
|
+
- IconBaking
|
|
879
880
|
- IconBanana
|
|
880
881
|
- IconBananas
|
|
881
882
|
- IconBeer
|
|
@@ -1134,6 +1135,7 @@ Below is a complete list of available icons:
|
|
|
1134
1135
|
- IconPaperclip2
|
|
1135
1136
|
- IconPaperclip3
|
|
1136
1137
|
- IconPin
|
|
1138
|
+
- IconPin2
|
|
1137
1139
|
- IconPlanning
|
|
1138
1140
|
- IconPlusLarge
|
|
1139
1141
|
- IconPlusSmall
|
|
@@ -1193,6 +1195,7 @@ Below is a complete list of available icons:
|
|
|
1193
1195
|
- IconTrial
|
|
1194
1196
|
- IconUnarchiv
|
|
1195
1197
|
- IconUnpin
|
|
1198
|
+
- IconUnpin2
|
|
1196
1199
|
- IconUntrash
|
|
1197
1200
|
- IconWindow
|
|
1198
1201
|
- IconWindow2
|
package/filtered-icons.json
CHANGED
|
@@ -2688,6 +2688,20 @@
|
|
|
2688
2688
|
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
2689
2689
|
"componentName": "IconBag3"
|
|
2690
2690
|
},
|
|
2691
|
+
{
|
|
2692
|
+
"category": "Food",
|
|
2693
|
+
"svg": "<path d=\"M20.25 4.75H3.75C3.19772 4.75 2.75 5.19771 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.25V5.75C21.25 5.19772 20.8023 4.75 20.25 4.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.88901 8.75C4.56366 11.2678 10.2377 12.7322 6.91235 15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.4867 8.75C9.16132 11.2678 14.8354 12.7322 11.51 15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.0882 8.75C13.7629 11.2678 19.4369 12.7322 16.1116 15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
2694
|
+
"iconName": "baking, cooking",
|
|
2695
|
+
"variant": {
|
|
2696
|
+
"join": "round",
|
|
2697
|
+
"filled": "off",
|
|
2698
|
+
"radius": "1",
|
|
2699
|
+
"stroke": "1.5"
|
|
2700
|
+
},
|
|
2701
|
+
"createdAt": "2026-03-19T14:01:06.573173+00:00",
|
|
2702
|
+
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
2703
|
+
"componentName": "IconBaking"
|
|
2704
|
+
},
|
|
2691
2705
|
{
|
|
2692
2706
|
"category": "Things",
|
|
2693
2707
|
"svg": "<path d=\"M12 19.175C15.0938 19.175 20.25 15.5875 20.25 9.46679C20.25 4.655 16.5563 1.75 12 1.75C7.44365 1.75 3.75 4.655 3.75 9.46679C3.75 15.5875 8.90625 19.175 12 19.175Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.4537 19.1748L9.78451 20.8855C9.52799 21.5413 10.0116 22.2498 10.7158 22.2498H13.2855C13.9897 22.2498 14.4733 21.5413 14.2167 20.8854L13.5474 19.1748\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.2466 5.80312C11.491 5.76793 11.7426 5.75 11.9995 5.75L11.2466 5.80312ZM11.2466 5.80312C9.40436 6.06838 7.97346 7.31441 7.77344 9.25222\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -18508,6 +18522,20 @@
|
|
|
18508
18522
|
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
18509
18523
|
"componentName": "IconPin"
|
|
18510
18524
|
},
|
|
18525
|
+
{
|
|
18526
|
+
"category": "Interface General",
|
|
18527
|
+
"svg": "<path d=\"M11.25 20.3974V15H12.75V20.3974C12.75 20.4651 12.7362 20.5321 12.7096 20.5943L12.2298 21.7138C12.1432 21.9159 11.8568 21.9159 11.7702 21.7138L11.2904 20.5943C11.2638 20.5321 11.25 20.4651 11.25 20.3974Z\" fill=\"currentColor\"/><path d=\"M15.75 8.48044C15.75 8.83025 15.936 9.15042 16.2202 9.35427C17.7994 10.4867 18.9048 12.2377 19.182 14.253C19.2573 14.8001 18.8023 15.25 18.25 15.25H5.74999C5.19771 15.25 4.74273 14.8001 4.81799 14.253C5.09517 12.2377 6.2006 10.4867 7.77974 9.35427C8.06402 9.15042 8.24999 8.83025 8.24999 8.48044V3.75C8.24999 3.19772 8.69771 2.75 9.24999 2.75H14.75C15.3023 2.75 15.75 3.19772 15.75 3.75V8.48044Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>",
|
|
18528
|
+
"iconName": "pin-2",
|
|
18529
|
+
"variant": {
|
|
18530
|
+
"join": "round",
|
|
18531
|
+
"filled": "off",
|
|
18532
|
+
"radius": "1",
|
|
18533
|
+
"stroke": "1.5"
|
|
18534
|
+
},
|
|
18535
|
+
"createdAt": "2026-03-19T14:01:06.573173+00:00",
|
|
18536
|
+
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
18537
|
+
"componentName": "IconPin2"
|
|
18538
|
+
},
|
|
18511
18539
|
{
|
|
18512
18540
|
"category": "Hands",
|
|
18513
18541
|
"svg": "<path d=\"M2.2625 7.61719C1.57917 9.39555 1.57917 10.9951 2.2625 12.7734M16.0947 5.85437L11.6336 8.53244L9.57308 4.82159C9.00409 3.79686 7.74391 3.44577 6.75838 4.03739C5.77286 4.62902 5.4352 5.93933 6.00419 6.96405L9.09494 12.5303L7.87114 12.3365C6.74613 12.1584 5.69523 12.9622 5.52389 14.132L5.3375 15.4045L10.9198 19.0656C13.2398 20.5871 16.1795 20.6469 18.5549 19.2209C22.0884 17.0997 23.2991 12.4017 21.259 8.72766L20.3167 7.03066C19.4632 5.49357 17.573 4.96693 16.0947 5.85437Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -24892,6 +24920,20 @@
|
|
|
24892
24920
|
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
24893
24921
|
"componentName": "IconUnpin"
|
|
24894
24922
|
},
|
|
24923
|
+
{
|
|
24924
|
+
"category": "Interface General",
|
|
24925
|
+
"svg": "<path d=\"M11.25 20.3974V15H12.75V20.3974C12.75 20.4651 12.7362 20.5321 12.7096 20.5943L12.2298 21.7138C12.1432 21.9159 11.8568 21.9159 11.7702 21.7138L11.2904 20.5943C11.2638 20.5321 11.25 20.4651 11.25 20.3974Z\" fill=\"currentColor\"/><path d=\"M3.75 2.26953L19.25 19.2495\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M9 8.7L8.25 9.04395C6.1521 10.3143 4.75 12.6184 4.75 15.25H15.5M19.2458 15C19.1601 12.4729 17.7812 10.2739 15.75 9.04395V3.75C15.75 3.19772 15.3023 2.75 14.75 2.75H9.25C8.95133 2.75 8.68324 2.88094 8.5 3.08854\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
24926
|
+
"iconName": "unpin-2",
|
|
24927
|
+
"variant": {
|
|
24928
|
+
"join": "round",
|
|
24929
|
+
"filled": "off",
|
|
24930
|
+
"radius": "1",
|
|
24931
|
+
"stroke": "1.5"
|
|
24932
|
+
},
|
|
24933
|
+
"createdAt": "2026-03-19T14:01:06.573173+00:00",
|
|
24934
|
+
"packageName": "round-outlined-radius-1-stroke-1.5",
|
|
24935
|
+
"componentName": "IconUnpin2"
|
|
24936
|
+
},
|
|
24895
24937
|
{
|
|
24896
24938
|
"category": "Interface General",
|
|
24897
24939
|
"svg": "<path d=\"M4.75 6.5L5.72041 20.32C5.7572 20.8439 6.19286 21.25 6.71796 21.25H17.282C17.8071 21.25 18.2428 20.8439 18.2796 20.32L19.25 6.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 16.25V10.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.25 12.5L12 9.75L14.75 12.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.90894 3.95182C9.41352 2.27764 11.1022 1.20812 12.8669 1.51927C14.6315 1.83042 15.8526 3.41302 15.7541 5.15882\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.68555 3.2002L20.9197 6.23904\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -191,6 +191,7 @@ export type CentralIconName =
|
|
|
191
191
|
| "IconBag2"
|
|
192
192
|
| "IconBag2Sparkle"
|
|
193
193
|
| "IconBag3"
|
|
194
|
+
| "IconBaking"
|
|
194
195
|
| "IconBalloon"
|
|
195
196
|
| "IconBanana"
|
|
196
197
|
| "IconBananas"
|
|
@@ -1321,6 +1322,7 @@ export type CentralIconName =
|
|
|
1321
1322
|
| "IconPillowZz"
|
|
1322
1323
|
| "IconPilone"
|
|
1323
1324
|
| "IconPin"
|
|
1325
|
+
| "IconPin2"
|
|
1324
1326
|
| "IconPinch"
|
|
1325
1327
|
| "IconPinCircle"
|
|
1326
1328
|
| "IconPinFlag"
|
|
@@ -1777,6 +1779,7 @@ export type CentralIconName =
|
|
|
1777
1779
|
| "IconUnicorn"
|
|
1778
1780
|
| "IconUnlocked"
|
|
1779
1781
|
| "IconUnpin"
|
|
1782
|
+
| "IconUnpin2"
|
|
1780
1783
|
| "IconUntrash"
|
|
1781
1784
|
| "IconUsb"
|
|
1782
1785
|
| "IconUsbC"
|
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.171",
|
|
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": 1900,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 72,
|
|
@@ -769,11 +769,12 @@
|
|
|
769
769
|
]
|
|
770
770
|
},
|
|
771
771
|
"Food": {
|
|
772
|
-
"count":
|
|
772
|
+
"count": 48,
|
|
773
773
|
"icons": [
|
|
774
774
|
"IconAppleNewton",
|
|
775
775
|
"IconApples",
|
|
776
776
|
"IconAvocado",
|
|
777
|
+
"IconBaking",
|
|
777
778
|
"IconBanana",
|
|
778
779
|
"IconBananas",
|
|
779
780
|
"IconBeer",
|
|
@@ -915,7 +916,7 @@
|
|
|
915
916
|
]
|
|
916
917
|
},
|
|
917
918
|
"Interface General": {
|
|
918
|
-
"count":
|
|
919
|
+
"count": 193,
|
|
919
920
|
"icons": [
|
|
920
921
|
"IconAnchor1",
|
|
921
922
|
"IconAnchor2",
|
|
@@ -1042,6 +1043,7 @@
|
|
|
1042
1043
|
"IconPaperclip2",
|
|
1043
1044
|
"IconPaperclip3",
|
|
1044
1045
|
"IconPin",
|
|
1046
|
+
"IconPin2",
|
|
1045
1047
|
"IconPlanning",
|
|
1046
1048
|
"IconPlusLarge",
|
|
1047
1049
|
"IconPlusSmall",
|
|
@@ -1101,6 +1103,7 @@
|
|
|
1101
1103
|
"IconTrial",
|
|
1102
1104
|
"IconUnarchiv",
|
|
1103
1105
|
"IconUnpin",
|
|
1106
|
+
"IconUnpin2",
|
|
1104
1107
|
"IconUntrash",
|
|
1105
1108
|
"IconWindow",
|
|
1106
1109
|
"IconWindow2",
|
|
@@ -2291,6 +2294,7 @@
|
|
|
2291
2294
|
"IconBag2": "bag-2, luggage, buggage",
|
|
2292
2295
|
"IconBag2Sparkle": "bag 2-sparkle, shopping, add, plus",
|
|
2293
2296
|
"IconBag3": "bag-3, luggage, suitcase, work",
|
|
2297
|
+
"IconBaking": "baking, cooking",
|
|
2294
2298
|
"IconBalloon": "balloon, birthday",
|
|
2295
2299
|
"IconBanana": "banana, fruit",
|
|
2296
2300
|
"IconBananas": "bananas, fruits",
|
|
@@ -3421,6 +3425,7 @@
|
|
|
3421
3425
|
"IconPillowZz": "pillow-zz, sleep, snooze",
|
|
3422
3426
|
"IconPilone": "pilone, maintenance",
|
|
3423
3427
|
"IconPin": "pin",
|
|
3428
|
+
"IconPin2": "pin-2",
|
|
3424
3429
|
"IconPinch": "pinch",
|
|
3425
3430
|
"IconPinCircle": "pin-circle, location",
|
|
3426
3431
|
"IconPinFlag": "pin-flag, location",
|
|
@@ -3877,6 +3882,7 @@
|
|
|
3877
3882
|
"IconUnicorn": "unicorn, startup, success",
|
|
3878
3883
|
"IconUnlocked": "unlocked, unlock, private",
|
|
3879
3884
|
"IconUnpin": "unpin",
|
|
3885
|
+
"IconUnpin2": "unpin-2",
|
|
3880
3886
|
"IconUntrash": "untrash",
|
|
3881
3887
|
"IconUsb": "usb, connection, connect, save, data",
|
|
3882
3888
|
"IconUsbC": "usb-c, type-c",
|
package/index.d.ts
CHANGED
|
@@ -190,6 +190,7 @@ export { IconBag, default as IconBagDefault } from "./IconBag";
|
|
|
190
190
|
export { IconBag2, default as IconBag2Default } from "./IconBag2";
|
|
191
191
|
export { IconBag2Sparkle, default as IconBag2SparkleDefault, } from "./IconBag2Sparkle";
|
|
192
192
|
export { IconBag3, default as IconBag3Default } from "./IconBag3";
|
|
193
|
+
export { IconBaking, default as IconBakingDefault } from "./IconBaking";
|
|
193
194
|
export { IconBalloon, default as IconBalloonDefault } from "./IconBalloon";
|
|
194
195
|
export { IconBanana, default as IconBananaDefault } from "./IconBanana";
|
|
195
196
|
export { IconBananas, default as IconBananasDefault } from "./IconBananas";
|
|
@@ -1320,6 +1321,7 @@ export { IconPillow, default as IconPillowDefault } from "./IconPillow";
|
|
|
1320
1321
|
export { IconPillowZz, default as IconPillowZzDefault } from "./IconPillowZz";
|
|
1321
1322
|
export { IconPilone, default as IconPiloneDefault } from "./IconPilone";
|
|
1322
1323
|
export { IconPin, default as IconPinDefault } from "./IconPin";
|
|
1324
|
+
export { IconPin2, default as IconPin2Default } from "./IconPin2";
|
|
1323
1325
|
export { IconPinCircle, default as IconPinCircleDefault, } from "./IconPinCircle";
|
|
1324
1326
|
export { IconPinFlag, default as IconPinFlagDefault } from "./IconPinFlag";
|
|
1325
1327
|
export { IconPinLocation, default as IconPinLocationDefault, } from "./IconPinLocation";
|
|
@@ -1776,6 +1778,7 @@ export { IconUnderline, default as IconUnderlineDefault, } from "./IconUnderline
|
|
|
1776
1778
|
export { IconUnicorn, default as IconUnicornDefault } from "./IconUnicorn";
|
|
1777
1779
|
export { IconUnlocked, default as IconUnlockedDefault } from "./IconUnlocked";
|
|
1778
1780
|
export { IconUnpin, default as IconUnpinDefault } from "./IconUnpin";
|
|
1781
|
+
export { IconUnpin2, default as IconUnpin2Default } from "./IconUnpin2";
|
|
1779
1782
|
export { IconUntrash, default as IconUntrashDefault } from "./IconUntrash";
|
|
1780
1783
|
export { IconUsb, default as IconUsbDefault } from "./IconUsb";
|
|
1781
1784
|
export { IconUsbC, default as IconUsbCDefault } from "./IconUsbC";
|