@central-icons-react-native/round-outlined-radius-0-stroke-2 1.1.117 → 1.1.119
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/IconCherryOnTop/index.d.ts +4 -0
- package/IconCherryOnTop/index.js +2 -0
- package/IconCherryOnTop/index.js.map +1 -0
- package/IconCherryOnTop/index.mjs +2 -0
- package/IconCherryOnTop/index.mjs.map +1 -0
- package/IconDeskLamp/index.d.ts +4 -0
- package/IconDeskLamp/index.js +2 -0
- package/IconDeskLamp/index.js.map +1 -0
- package/IconDeskLamp/index.mjs +2 -0
- package/IconDeskLamp/index.mjs.map +1 -0
- package/IconProjects/index.d.ts +4 -0
- package/IconProjects/index.js +2 -0
- package/IconProjects/index.js.map +1 -0
- package/IconProjects/index.mjs +2 -0
- package/IconProjects/index.mjs.map +1 -0
- package/README.md +3 -0
- package/filtered-icons.json +43 -1
- package/icons/index.d.ts +3 -0
- package/icons-index.json +12 -6
- 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 +22 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var B=(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 L(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(f(r)):{},C(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>C(p({},"__esModule",{value:!0}),r);var P={};B(P,{IconCherryOnTop:()=>c,default:()=>x});module.exports=I(P);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:"M7.5 7.72727L3 11V20H21V11C19.8014 7.14616 17.6664 4.68527 14 3L12 4.45455",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M3 12H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M3 16H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M10 9C11.3807 9 12.5 7.88071 12.5 6.5C12.5 5.11929 11.3807 4 10 4C8.61929 4 7.5 5.11929 7.5 6.5C7.5 7.88071 8.61929 9 10 9Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),x=c;0&&(module.exports={IconCherryOnTop});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCherryOnTop/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 IconCherryOnTop: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.5 7.72727L3 11V20H21V11C19.8014 7.14616 17.6664 4.68527 14 3L12 4.45455\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3 12H21\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3 16H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10 9C11.3807 9 12.5 7.88071 12.5 6.5C12.5 5.11929 11.3807 4 10 4C8.61929 4 7.5 5.11929 7.5 6.5C7.5 7.88071 8.61929 9 10 9Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCherryOnTop;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,qBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,6EACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8HACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconCherryOnTop_exports","__export","IconCherryOnTop","IconCherryOnTop_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCherryOnTop","props","React","CentralIconBase","IconCherryOnTop_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:"M7.5 7.72727L3 11V20H21V11C19.8014 7.14616 17.6664 4.68527 14 3L12 4.45455",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M3 12H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M3 16H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M10 9C11.3807 9 12.5 7.88071 12.5 6.5C12.5 5.11929 11.3807 4 10 4C8.61929 4 7.5 5.11929 7.5 6.5C7.5 7.88071 8.61929 9 10 9Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),h=C;export{C as IconCherryOnTop,h as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCherryOnTop/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 IconCherryOnTop: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.5 7.72727L3 11V20H21V11C19.8014 7.14616 17.6664 4.68527 14 3L12 4.45455\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3 12H21\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3 16H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10 9C11.3807 9 12.5 7.88071 12.5 6.5C12.5 5.11929 11.3807 4 10 4C8.61929 4 7.5 5.11929 7.5 6.5C7.5 7.88071 8.61929 9 10 9Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCherryOnTop;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,6EACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8HACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCherryOnTop","props","React","CentralIconBase","IconCherryOnTop_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var B=(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(L(r)):{},C(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>C(p({},"__esModule",{value:!0}),r);var P={};B(P,{IconDeskLamp:()=>c,default:()=>x});module.exports=I(P);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:"M15.2791 4H8.72423C6.76201 4 4.87537 5.11629 4.35843 7.00918C4.09591 7.97048 3.9529 8.95434 4.00163 10H20.0016C20.0503 8.95435 19.9073 7.9705 19.6448 7.00921C19.1279 5.1163 17.2413 4 15.2791 4Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M12 10V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M8 20H16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M17.25 10V15.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),x=c;0&&(module.exports={IconDeskLamp});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDeskLamp/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 IconDeskLamp: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.2791 4H8.72423C6.76201 4 4.87537 5.11629 4.35843 7.00918C4.09591 7.97048 3.9529 8.95434 4.00163 10H20.0016C20.0503 8.95435 19.9073 7.9705 19.6448 7.00921C19.1279 5.1163 17.2413 4 15.2791 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 10V20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 20H16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.25 10V15.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDeskLamp;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,kBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,oMACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconDeskLamp_exports","__export","IconDeskLamp","IconDeskLamp_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDeskLamp","props","React","CentralIconBase","IconDeskLamp_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:"M15.2791 4H8.72423C6.76201 4 4.87537 5.11629 4.35843 7.00918C4.09591 7.97048 3.9529 8.95434 4.00163 10H20.0016C20.0503 8.95435 19.9073 7.9705 19.6448 7.00921C19.1279 5.1163 17.2413 4 15.2791 4Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M12 10V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M8 20H16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M17.25 10V15.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),h=C;export{C as IconDeskLamp,h as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDeskLamp/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 IconDeskLamp: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.2791 4H8.72423C6.76201 4 4.87537 5.11629 4.35843 7.00918C4.09591 7.97048 3.9529 8.95434 4.00163 10H20.0016C20.0503 8.95435 19.9073 7.9705 19.6448 7.00921C19.1279 5.1163 17.2413 4 15.2791 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 10V20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 20H16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.25 10V15.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDeskLamp;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,oMACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDeskLamp","props","React","CentralIconBase","IconDeskLamp_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var m=Object.create;var s=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var L=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of f(o))!I.call(r,t)&&t!==e&&s(r,t,{get:()=>o[t],enumerable:!(i=k(o,t))||i.enumerable});return r};var u=(r,o,e)=>(e=r!=null?m(B(r)):{},a(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>a(s({},"__esModule",{value:!0}),r);var x={};L(x,{IconProjects:()=>l,default:()=>h});module.exports=P(x);var n=u(require("react"));var c=u(require("react")),d=require("react-native-svg"),C=({children:r,size:o=24,...e})=>c.default.createElement(d.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 p=require("react-native-svg"),l=r=>n.default.createElement(C,{...r},n.default.createElement(p.Path,{d:"M7 4H17",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M5 7.5H19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M21 11H3L5 20H19L21 11Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),h=l;0&&(module.exports={IconProjects});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconProjects/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 IconProjects: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7 4H17\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5 7.5H19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21 11H3L5 20H19L21 11Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconProjects;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,kBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconProjects_exports","__export","IconProjects","IconProjects_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconProjects","props","React","CentralIconBase","IconProjects_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as i}from"react-native-svg";var n=({children:e,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"},e);import{Path as t}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(t,{d:"M7 4H17",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M5 7.5H19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M21 11H3L5 20H19L21 11Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),I=a;export{a as IconProjects,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconProjects/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 IconProjects: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7 4H17\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M5 7.5H19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21 11H3L5 20H19L21 11Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconProjects;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconProjects","props","React","CentralIconBase","IconProjects_default"]}
|
package/README.md
CHANGED
|
@@ -853,6 +853,7 @@ Below is a complete list of available icons:
|
|
|
853
853
|
- IconCereals
|
|
854
854
|
- IconCheeseburger
|
|
855
855
|
- IconCherry
|
|
856
|
+
- IconCherryOnTop
|
|
856
857
|
- IconCocktail
|
|
857
858
|
- IconCookies
|
|
858
859
|
- IconCooking
|
|
@@ -1204,6 +1205,7 @@ Below is a complete list of available icons:
|
|
|
1204
1205
|
- IconLayoutTopbar
|
|
1205
1206
|
- IconLayoutWindow
|
|
1206
1207
|
- IconPlaceholder
|
|
1208
|
+
- IconProjects
|
|
1207
1209
|
- IconSidebarFloating
|
|
1208
1210
|
- IconSidebarHiddenLeftWide
|
|
1209
1211
|
- IconSidebarHiddenRightWide
|
|
@@ -1755,6 +1757,7 @@ Below is a complete list of available icons:
|
|
|
1755
1757
|
- IconDashboardFast
|
|
1756
1758
|
- IconDashboardLow
|
|
1757
1759
|
- IconDashboardMiddle
|
|
1760
|
+
- IconDeskLamp
|
|
1758
1761
|
- IconDiamond
|
|
1759
1762
|
- IconDiamondShine
|
|
1760
1763
|
- IconDino
|
package/filtered-icons.json
CHANGED
|
@@ -5838,6 +5838,20 @@
|
|
|
5838
5838
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
5839
5839
|
"componentName": "IconCherry"
|
|
5840
5840
|
},
|
|
5841
|
+
{
|
|
5842
|
+
"category": "Food",
|
|
5843
|
+
"svg": "<path d=\"M7.5 7.72727L3 11V20H21V11C19.8014 7.14616 17.6664 4.68527 14 3L12 4.45455\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3 12H21\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3 16H15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 9C11.3807 9 12.5 7.88071 12.5 6.5C12.5 5.11929 11.3807 4 10 4C8.61929 4 7.5 5.11929 7.5 6.5C7.5 7.88071 8.61929 9 10 9Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
5844
|
+
"iconName": "cherry-on-top, cake, birthday",
|
|
5845
|
+
"variant": {
|
|
5846
|
+
"join": "round",
|
|
5847
|
+
"filled": "off",
|
|
5848
|
+
"radius": "0",
|
|
5849
|
+
"stroke": "2"
|
|
5850
|
+
},
|
|
5851
|
+
"createdAt": "2026-02-05T08:00:17.013507+00:00",
|
|
5852
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
5853
|
+
"componentName": "IconCherryOnTop"
|
|
5854
|
+
},
|
|
5841
5855
|
{
|
|
5842
5856
|
"category": "Arrows",
|
|
5843
5857
|
"svg": "<path d=\"M20 9L12 17L4 9\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -6541,7 +6555,7 @@
|
|
|
6541
6555
|
{
|
|
6542
6556
|
"category": "AI & Magic",
|
|
6543
6557
|
"svg": "<path d=\"M8 3H16V7H8V3Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19.2405 16.1852L18.5436 14.3733C18.4571 14.1484 18.241 14 18 14C17.759 14 17.5429 14.1484 17.4564 14.3733L16.7595 16.1852C16.658 16.4493 16.4493 16.658 16.1852 16.7595L14.3733 17.4564C14.1484 17.5429 14 17.759 14 18C14 18.241 14.1484 18.4571 14.3733 18.5436L16.1852 19.2405C16.4493 19.342 16.658 19.5507 16.7595 19.8148L17.4564 21.6267C17.5429 21.8516 17.759 22 18 22C18.241 22 18.4571 21.8516 18.5436 21.6267L19.2405 19.8148C19.342 19.5507 19.5507 19.342 19.8148 19.2405L21.6267 18.5436C21.8516 18.4571 22 18.241 22 18C22 17.759 21.8516 17.5429 21.6267 17.4564L19.8148 16.7595C19.5507 16.658 19.342 16.4493 19.2405 16.1852Z\" fill=\"currentColor\"/><path d=\"M16 5H20V11M8 5H4V21H12\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
6544
|
-
"iconName": "clipboard 2-sparkle, copy, list",
|
|
6558
|
+
"iconName": "clipboard 2-sparkle, copy, list, auto-fill, form-fill",
|
|
6545
6559
|
"variant": {
|
|
6546
6560
|
"join": "round",
|
|
6547
6561
|
"filled": "off",
|
|
@@ -8274,6 +8288,20 @@
|
|
|
8274
8288
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
8275
8289
|
"componentName": "IconDeliveryBike"
|
|
8276
8290
|
},
|
|
8291
|
+
{
|
|
8292
|
+
"category": "Things",
|
|
8293
|
+
"svg": "<path d=\"M15.2791 4H8.72423C6.76201 4 4.87537 5.11629 4.35843 7.00918C4.09591 7.97048 3.9529 8.95434 4.00163 10H20.0016C20.0503 8.95435 19.9073 7.9705 19.6448 7.00921C19.1279 5.1163 17.2413 4 15.2791 4Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 10V20\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8 20H16\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.25 10V15.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
8294
|
+
"iconName": "desk-lamp, light, study",
|
|
8295
|
+
"variant": {
|
|
8296
|
+
"join": "round",
|
|
8297
|
+
"filled": "off",
|
|
8298
|
+
"radius": "0",
|
|
8299
|
+
"stroke": "2"
|
|
8300
|
+
},
|
|
8301
|
+
"createdAt": "2026-02-05T08:00:17.013507+00:00",
|
|
8302
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
8303
|
+
"componentName": "IconDeskLamp"
|
|
8304
|
+
},
|
|
8277
8305
|
{
|
|
8278
8306
|
"category": "Furniture & Household",
|
|
8279
8307
|
"svg": "<path d=\"M3 18V6H11M11 6H21V18H11V6Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15 10V11\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -17752,6 +17780,20 @@
|
|
|
17752
17780
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
17753
17781
|
"componentName": "IconProgress75"
|
|
17754
17782
|
},
|
|
17783
|
+
{
|
|
17784
|
+
"category": "Layout",
|
|
17785
|
+
"svg": "<path d=\"M7 4H17\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5 7.5H19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21 11H3L5 20H19L21 11Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
17786
|
+
"iconName": "projects, stack, templates, timeline",
|
|
17787
|
+
"variant": {
|
|
17788
|
+
"join": "round",
|
|
17789
|
+
"filled": "off",
|
|
17790
|
+
"radius": "0",
|
|
17791
|
+
"stroke": "2"
|
|
17792
|
+
},
|
|
17793
|
+
"createdAt": "2026-02-05T08:00:17.013507+00:00",
|
|
17794
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
17795
|
+
"componentName": "IconProjects"
|
|
17796
|
+
},
|
|
17755
17797
|
{
|
|
17756
17798
|
"category": "AI & Magic",
|
|
17757
17799
|
"svg": "<path d=\"M6 5H3V8\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18 5H21V8\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21 16V19H18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6 19H3V16\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8 10H16\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8 14H14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -416,6 +416,7 @@ export type CentralIconName =
|
|
|
416
416
|
| "IconCheckmark2Small"
|
|
417
417
|
| "IconCheeseburger"
|
|
418
418
|
| "IconCherry"
|
|
419
|
+
| "IconCherryOnTop"
|
|
419
420
|
| "IconChevronBottom"
|
|
420
421
|
| "IconChevronDoubleLeft"
|
|
421
422
|
| "IconChevronDoubleRight"
|
|
@@ -590,6 +591,7 @@ export type CentralIconName =
|
|
|
590
591
|
| "IconDeepSearch"
|
|
591
592
|
| "IconDeepseek"
|
|
592
593
|
| "IconDeliveryBike"
|
|
594
|
+
| "IconDeskLamp"
|
|
593
595
|
| "IconDeskOffice"
|
|
594
596
|
| "IconDeskOffice2"
|
|
595
597
|
| "IconDevices"
|
|
@@ -1267,6 +1269,7 @@ export type CentralIconName =
|
|
|
1267
1269
|
| "IconProgress25"
|
|
1268
1270
|
| "IconProgress50"
|
|
1269
1271
|
| "IconProgress75"
|
|
1272
|
+
| "IconProjects"
|
|
1270
1273
|
| "IconPrompt"
|
|
1271
1274
|
| "IconPrompt1"
|
|
1272
1275
|
| "IconPromptSuggestion"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.119",
|
|
4
4
|
"style": "round-outlined-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-0-stroke-2/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": 1755,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 67,
|
|
@@ -737,7 +737,7 @@
|
|
|
737
737
|
]
|
|
738
738
|
},
|
|
739
739
|
"Food": {
|
|
740
|
-
"count":
|
|
740
|
+
"count": 43,
|
|
741
741
|
"icons": [
|
|
742
742
|
"IconAppleNewton",
|
|
743
743
|
"IconApples",
|
|
@@ -751,6 +751,7 @@
|
|
|
751
751
|
"IconCereals",
|
|
752
752
|
"IconCheeseburger",
|
|
753
753
|
"IconCherry",
|
|
754
|
+
"IconCherryOnTop",
|
|
754
755
|
"IconCocktail",
|
|
755
756
|
"IconCookies",
|
|
756
757
|
"IconCooking",
|
|
@@ -1079,7 +1080,7 @@
|
|
|
1079
1080
|
]
|
|
1080
1081
|
},
|
|
1081
1082
|
"Layout": {
|
|
1082
|
-
"count":
|
|
1083
|
+
"count": 52,
|
|
1083
1084
|
"icons": [
|
|
1084
1085
|
"IconAlignHorizontalCenter",
|
|
1085
1086
|
"IconAlignVerticalCenter",
|
|
@@ -1116,6 +1117,7 @@
|
|
|
1116
1117
|
"IconLayoutTopbar",
|
|
1117
1118
|
"IconLayoutWindow",
|
|
1118
1119
|
"IconPlaceholder",
|
|
1120
|
+
"IconProjects",
|
|
1119
1121
|
"IconSidebarFloating",
|
|
1120
1122
|
"IconSidebarHiddenLeftWide",
|
|
1121
1123
|
"IconSidebarHiddenRightWide",
|
|
@@ -1661,7 +1663,7 @@
|
|
|
1661
1663
|
]
|
|
1662
1664
|
},
|
|
1663
1665
|
"Things": {
|
|
1664
|
-
"count":
|
|
1666
|
+
"count": 121,
|
|
1665
1667
|
"icons": [
|
|
1666
1668
|
"IconAnvil",
|
|
1667
1669
|
"IconBackpack",
|
|
@@ -1689,6 +1691,7 @@
|
|
|
1689
1691
|
"IconDashboardFast",
|
|
1690
1692
|
"IconDashboardLow",
|
|
1691
1693
|
"IconDashboardMiddle",
|
|
1694
|
+
"IconDeskLamp",
|
|
1692
1695
|
"IconDiamond",
|
|
1693
1696
|
"IconDiamondShine",
|
|
1694
1697
|
"IconDino",
|
|
@@ -2369,6 +2372,7 @@
|
|
|
2369
2372
|
"IconCheckmark2Small": "checkmark-2-small",
|
|
2370
2373
|
"IconCheeseburger": "cheeseburger, hamburger, sandwich",
|
|
2371
2374
|
"IconCherry": "cherry",
|
|
2375
|
+
"IconCherryOnTop": "cherry-on-top, cake, birthday",
|
|
2372
2376
|
"IconChevronBottom": "chevron-bottom",
|
|
2373
2377
|
"IconChevronDoubleLeft": "chevron-double-left",
|
|
2374
2378
|
"IconChevronDoubleRight": "chevron-double-right",
|
|
@@ -2419,7 +2423,7 @@
|
|
|
2419
2423
|
"IconClaudeai": "claudeai",
|
|
2420
2424
|
"IconClipboard": "clipboard, copy, list",
|
|
2421
2425
|
"IconClipboard2": "clipboard-2, copy, list",
|
|
2422
|
-
"IconClipboard2Sparkle": "clipboard 2-sparkle, copy, list",
|
|
2426
|
+
"IconClipboard2Sparkle": "clipboard 2-sparkle, copy, list, auto-fill, form-fill",
|
|
2423
2427
|
"IconClock": "clock, time, timer",
|
|
2424
2428
|
"IconClockAlert": "clock-alert, timer",
|
|
2425
2429
|
"IconClockSnooze": "clock-snooze, timer, snooze, zz",
|
|
@@ -2543,6 +2547,7 @@
|
|
|
2543
2547
|
"IconDeepSearch": "deep-search, deep-research, focus-search",
|
|
2544
2548
|
"IconDeepseek": "deepseek",
|
|
2545
2549
|
"IconDeliveryBike": "delivery-bike",
|
|
2550
|
+
"IconDeskLamp": "desk-lamp, light, study",
|
|
2546
2551
|
"IconDeskOffice": "desk-office",
|
|
2547
2552
|
"IconDeskOffice2": "desk-office-2",
|
|
2548
2553
|
"IconDevices": "devices, macbook, iphone, phone, connected",
|
|
@@ -3220,6 +3225,7 @@
|
|
|
3220
3225
|
"IconProgress25": "progress-25, ideas, open, status, task",
|
|
3221
3226
|
"IconProgress50": "progress-50, ideas, open, status, tas",
|
|
3222
3227
|
"IconProgress75": "progress-75, ideas, open, status, tas",
|
|
3228
|
+
"IconProjects": "projects, stack, templates, timeline",
|
|
3223
3229
|
"IconPrompt": "prompt, scan-text",
|
|
3224
3230
|
"IconPrompt1": "prompt, vibe-designing, box-sparkle",
|
|
3225
3231
|
"IconPromptSuggestion": "prompt-suggestion, auto-prompt",
|
package/index.d.ts
CHANGED
|
@@ -415,6 +415,7 @@ export { IconCheckmark2, default as IconCheckmark2Default, } from "./IconCheckma
|
|
|
415
415
|
export { IconCheckmark2Small, default as IconCheckmark2SmallDefault, } from "./IconCheckmark2Small";
|
|
416
416
|
export { IconCheeseburger, default as IconCheeseburgerDefault, } from "./IconCheeseburger";
|
|
417
417
|
export { IconCherry, default as IconCherryDefault } from "./IconCherry";
|
|
418
|
+
export { IconCherryOnTop, default as IconCherryOnTopDefault, } from "./IconCherryOnTop";
|
|
418
419
|
export { IconChevronBottom, default as IconChevronBottomDefault, } from "./IconChevronBottom";
|
|
419
420
|
export { IconChevronDoubleLeft, default as IconChevronDoubleLeftDefault, } from "./IconChevronDoubleLeft";
|
|
420
421
|
export { IconChevronDoubleRight, default as IconChevronDoubleRightDefault, } from "./IconChevronDoubleRight";
|
|
@@ -589,6 +590,7 @@ export { IconDebugger, default as IconDebuggerDefault } from "./IconDebugger";
|
|
|
589
590
|
export { IconDeepSearch, default as IconDeepSearchDefault, } from "./IconDeepSearch";
|
|
590
591
|
export { IconDeepseek, default as IconDeepseekDefault } from "./IconDeepseek";
|
|
591
592
|
export { IconDeliveryBike, default as IconDeliveryBikeDefault, } from "./IconDeliveryBike";
|
|
593
|
+
export { IconDeskLamp, default as IconDeskLampDefault } from "./IconDeskLamp";
|
|
592
594
|
export { IconDeskOffice, default as IconDeskOfficeDefault, } from "./IconDeskOffice";
|
|
593
595
|
export { IconDeskOffice2, default as IconDeskOffice2Default, } from "./IconDeskOffice2";
|
|
594
596
|
export { IconDevices, default as IconDevicesDefault } from "./IconDevices";
|
|
@@ -1266,6 +1268,7 @@ export { IconProgress100, default as IconProgress100Default, } from "./IconProgr
|
|
|
1266
1268
|
export { IconProgress25, default as IconProgress25Default, } from "./IconProgress25";
|
|
1267
1269
|
export { IconProgress50, default as IconProgress50Default, } from "./IconProgress50";
|
|
1268
1270
|
export { IconProgress75, default as IconProgress75Default, } from "./IconProgress75";
|
|
1271
|
+
export { IconProjects, default as IconProjectsDefault } from "./IconProjects";
|
|
1269
1272
|
export { IconPrompt, default as IconPromptDefault } from "./IconPrompt";
|
|
1270
1273
|
export { IconPrompt1, default as IconPrompt1Default } from "./IconPrompt1";
|
|
1271
1274
|
export { IconPromptSuggestion, default as IconPromptSuggestionDefault, } from "./IconPromptSuggestion";
|