@central-icons-react-native/round-outlined-radius-1-stroke-1 1.0.2 → 1.0.4
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/IconCursorAi/index.d.ts +4 -0
- package/IconCursorAi/index.js +2 -0
- package/IconCursorAi/index.js.map +1 -0
- package/IconCursorAi/index.mjs +2 -0
- package/IconCursorAi/index.mjs.map +1 -0
- package/IconDispersion/index.d.ts +4 -0
- package/IconDispersion/index.js +2 -0
- package/IconDispersion/index.js.map +1 -0
- package/IconDispersion/index.mjs +2 -0
- package/IconDispersion/index.mjs.map +1 -0
- package/IconGovernment/index.d.ts +4 -0
- package/IconGovernment/index.js +2 -0
- package/IconGovernment/index.js.map +1 -0
- package/IconGovernment/index.mjs +2 -0
- package/IconGovernment/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 +11 -5
- 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 f=Object.create;var t=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of d(o))!I.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(s=L(o,n))||s.enumerable});return r};var i=(r,o,e)=>(e=r!=null?f(B(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>a(t({},"__esModule",{value:!0}),r);var k={};x(k,{IconCursorAi:()=>l,default:()=>g});module.exports=P(k);var p=i(require("react"));var m=i(require("react")),u=require("react-native-svg"),c=({children:r,size:o=24,...e})=>m.default.createElement(u.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"),l=r=>p.default.createElement(c,{...r},p.default.createElement(C.Path,{d:"M6.49989 4.06239L4.71021 3.436C3.91939 3.15921 3.15921 3.91939 3.436 4.71021L9.09163 20.8692C9.39083 21.724 10.5815 21.7726 10.9493 20.945L13.8687 14.3764C13.9692 14.1501 14.1501 13.9692 14.3764 13.8687L20.945 10.9493C21.7726 10.5815 21.724 9.39083 20.8692 9.09163L18.4999 8.26239",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M16.5 6C14.3125 5.51389 13.4861 4.6875 13 2.5C12.5139 4.6875 11.6875 5.51389 9.5 6C11.6875 6.48611 12.5139 7.3125 13 9.5C13.4861 7.3125 14.3125 6.48611 16.5 6Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),g=l;0&&(module.exports={IconCursorAi});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCursorAi/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 IconCursorAi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M6.49989 4.06239L4.71021 3.436C3.91939 3.15921 3.15921 3.91939 3.436 4.71021L9.09163 20.8692C9.39083 21.724 10.5815 21.7726 10.9493 20.945L13.8687 14.3764C13.9692 14.1501 14.1501 13.9692 14.3764 13.8687L20.945 10.9493C21.7726 10.5815 21.724 9.39083 20.8692 9.09163L18.4999 8.26239\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5 6C14.3125 5.51389 13.4861 4.6875 13 2.5C12.5139 4.6875 11.6875 5.51389 9.5 6C11.6875 6.48611 12.5139 7.3125 13 9.5C13.4861 7.3125 14.3125 6.48611 16.5 6Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCursorAi;\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,2RACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kKACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconCursorAi_exports","__export","IconCursorAi","IconCursorAi_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCursorAi","props","React","CentralIconBase","IconCursorAi_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as s}from"react-native-svg";var n=({children:o,size:r=24,...p})=>C.createElement(s,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as t}from"react-native-svg";var a=o=>e.createElement(n,{...o},e.createElement(t,{d:"M6.49989 4.06239L4.71021 3.436C3.91939 3.15921 3.15921 3.91939 3.436 4.71021L9.09163 20.8692C9.39083 21.724 10.5815 21.7726 10.9493 20.945L13.8687 14.3764C13.9692 14.1501 14.1501 13.9692 14.3764 13.8687L20.945 10.9493C21.7726 10.5815 21.724 9.39083 20.8692 9.09163L18.4999 8.26239",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M16.5 6C14.3125 5.51389 13.4861 4.6875 13 2.5C12.5139 4.6875 11.6875 5.51389 9.5 6C11.6875 6.48611 12.5139 7.3125 13 9.5C13.4861 7.3125 14.3125 6.48611 16.5 6Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),I=a;export{a as IconCursorAi,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCursorAi/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 IconCursorAi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M6.49989 4.06239L4.71021 3.436C3.91939 3.15921 3.15921 3.91939 3.436 4.71021L9.09163 20.8692C9.39083 21.724 10.5815 21.7726 10.9493 20.945L13.8687 14.3764C13.9692 14.1501 14.1501 13.9692 14.3764 13.8687L20.945 10.9493C21.7726 10.5815 21.724 9.39083 20.8692 9.09163L18.4999 8.26239\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5 6C14.3125 5.51389 13.4861 4.6875 13 2.5C12.5139 4.6875 11.6875 5.51389 9.5 6C11.6875 6.48611 12.5139 7.3125 13 9.5C13.4861 7.3125 14.3125 6.48611 16.5 6Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCursorAi;\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,2RACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kKACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCursorAi","props","React","CentralIconBase","IconCursorAi_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var k=Object.create;var s=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,u)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of f(o))!B.call(r,p)&&p!==e&&s(r,p,{get:()=>o[p],enumerable:!(u=m(o,p))||u.enumerable});return r};var c=(r,o,e)=>(e=r!=null?k(L(r)):{},C(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>C(s({},"__esModule",{value:!0}),r);var P={};I(P,{IconDispersion:()=>i,default:()=>M});module.exports=x(P);var n=c(require("react"));var l=c(require("react")),a=require("react-native-svg"),d=({children:r,size:o=24,...e})=>l.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 t=require("react-native-svg"),i=r=>n.default.createElement(d,{...r},n.default.createElement(t.Path,{d:"M12 3.5V20.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M2.5 12H8.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M15.5 12H21.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M15.5 7.5L20.5 3.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M20.5 20.5L15.5 16.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M2.5 16H8.5",stroke:"currentColor",strokeLinecap:"round"}),n.default.createElement(t.Path,{d:"M2.5 8H8.5",stroke:"currentColor",strokeLinecap:"round"})),M=i;0&&(module.exports={IconDispersion});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDispersion/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 IconDispersion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M12 3.5V20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M2.5 12H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M15.5 12H21.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path\n d=\"M15.5 7.5L20.5 3.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M20.5 20.5L15.5 16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path d=\"M2.5 16H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M2.5 8H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n </CentralIconBase>\n );\n};\n\nexport default IconDispersion;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,oBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,eAAe,OAAO,eAAe,cAAc,QAAQ,EACnE,EAAAA,QAAA,cAAC,QAAK,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,EAClE,EAAAA,QAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,EACpE,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,EAClE,EAAAA,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,cAAc,QAAQ,CACnE,EAIGE,EAAQJ","names":["IconDispersion_exports","__export","IconDispersion","IconDispersion_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDispersion","props","React","CentralIconBase","IconDispersion_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import s from"react";import{Svg as u}from"react-native-svg";var t=({children:n,size:e=24,...p})=>s.createElement(u,{...p,width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},n);import{Path as o}from"react-native-svg";var C=n=>r.createElement(t,{...n},r.createElement(o,{d:"M12 3.5V20.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M2.5 12H8.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M15.5 12H21.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M15.5 7.5L20.5 3.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M20.5 20.5L15.5 16.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M2.5 16H8.5",stroke:"currentColor",strokeLinecap:"round"}),r.createElement(o,{d:"M2.5 8H8.5",stroke:"currentColor",strokeLinecap:"round"})),B=C;export{C as IconDispersion,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDispersion/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 IconDispersion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M12 3.5V20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M2.5 12H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M15.5 12H21.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path\n d=\"M15.5 7.5L20.5 3.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M20.5 20.5L15.5 16.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n />\n <Path d=\"M2.5 16H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n <Path d=\"M2.5 8H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\n </CentralIconBase>\n );\n};\n\nexport default IconDispersion;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,eAAe,OAAO,eAAe,cAAc,QAAQ,EACnEG,EAAA,cAACH,EAAA,CAAK,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,EAClEG,EAAA,cAACH,EAAA,CAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,EACpEG,EAAA,cAACH,EAAA,CACC,EAAE,qBACF,OAAO,eACP,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uBACF,OAAO,eACP,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,cAAc,OAAO,eAAe,cAAc,QAAQ,EAClEG,EAAA,cAACH,EAAA,CAAK,EAAE,aAAa,OAAO,eAAe,cAAc,QAAQ,CACnE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDispersion","props","React","CentralIconBase","IconDispersion_default"]}
|
|
@@ -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,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},u=(r,o,n,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of L(o))!B.call(r,s)&&s!==n&&p(r,s,{get:()=>o[s],enumerable:!(i=m(o,s))||i.enumerable});return r};var d=(r,o,n)=>(n=r!=null?l(f(r)):{},u(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),x=r=>u(p({},"__esModule",{value:!0}),r);var V={};I(V,{IconGovernment:()=>c,default:()=>P});module.exports=x(V);var e=d(require("react"));var C=d(require("react")),k=require("react-native-svg"),a=({children:r,size:o=24,...n})=>C.default.createElement(k.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"),c=r=>e.default.createElement(a,{...r},e.default.createElement(t.Path,{d:"M15 12V20",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M9 12V20",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M3.5 20.5V12.75C3.5 8.05558 7.30558 4.25 12 4.25V4.25C16.6944 4.25 20.5 8.05558 20.5 12.75V20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M12 4V0.5H14.5V2.5H12",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M2.5 20.5H21.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(t.Path,{d:"M2.5 11.5H21.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),P=c;0&&(module.exports={IconGovernment});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGovernment/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 IconGovernment: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15 12V20\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 12V20\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3.5 20.5V12.75C3.5 8.05558 7.30558 4.25 12 4.25V4.25C16.6944 4.25 20.5 8.05558 20.5 12.75V20.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 4V0.5H14.5V2.5H12\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.5 20.5H21.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.5 11.5H21.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGovernment;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,oBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kGACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wBACF,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,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconGovernment_exports","__export","IconGovernment","IconGovernment_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGovernment","props","React","CentralIconBase","IconGovernment_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
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:"M15 12V20",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M9 12V20",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M3.5 20.5V12.75C3.5 8.05558 7.30558 4.25 12 4.25V4.25C16.6944 4.25 20.5 8.05558 20.5 12.75V20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M12 4V0.5H14.5V2.5H12",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M2.5 20.5H21.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(n,{d:"M2.5 11.5H21.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),B=u;export{u as IconGovernment,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGovernment/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 IconGovernment: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15 12V20\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 12V20\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3.5 20.5V12.75C3.5 8.05558 7.30558 4.25 12 4.25V4.25C16.6944 4.25 20.5 8.05558 20.5 12.75V20.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 4V0.5H14.5V2.5H12\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.5 20.5H21.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.5 11.5H21.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGovernment;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kGACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wBACF,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,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGovernment","props","React","CentralIconBase","IconGovernment_default"]}
|
package/README.md
CHANGED
|
@@ -147,6 +147,7 @@ Below is a complete list of available icons:
|
|
|
147
147
|
- IconBrain1
|
|
148
148
|
- IconBrain2
|
|
149
149
|
- IconBroomSparkle
|
|
150
|
+
- IconCursorAi
|
|
150
151
|
- IconCuteRobot
|
|
151
152
|
- IconEyeSparkle
|
|
152
153
|
- IconFortuneTellerBall
|
|
@@ -326,6 +327,7 @@ Below is a complete list of available icons:
|
|
|
326
327
|
- IconCourt
|
|
327
328
|
- IconDoor
|
|
328
329
|
- IconGarage
|
|
330
|
+
- IconGovernment
|
|
329
331
|
- IconHome
|
|
330
332
|
- IconHomeCircle
|
|
331
333
|
- IconHomeDoor
|
|
@@ -560,6 +562,7 @@ Below is a complete list of available icons:
|
|
|
560
562
|
- IconColorSwatch
|
|
561
563
|
- IconComponents
|
|
562
564
|
- IconCornerRadius
|
|
565
|
+
- IconDispersion
|
|
563
566
|
- IconEditBig
|
|
564
567
|
- IconEditSmall1
|
|
565
568
|
- IconEditSmall2
|
package/filtered-icons.json
CHANGED
|
@@ -7196,6 +7196,20 @@
|
|
|
7196
7196
|
"packageName": "round-outlined-radius-1-stroke-1",
|
|
7197
7197
|
"componentName": "IconCursor3"
|
|
7198
7198
|
},
|
|
7199
|
+
{
|
|
7200
|
+
"category": "AI & Magic",
|
|
7201
|
+
"svg": "<path d=\"M6.49989 4.06239L4.71021 3.436C3.91939 3.15921 3.15921 3.91939 3.436 4.71021L9.09163 20.8692C9.39083 21.724 10.5815 21.7726 10.9493 20.945L13.8687 14.3764C13.9692 14.1501 14.1501 13.9692 14.3764 13.8687L20.945 10.9493C21.7726 10.5815 21.724 9.39083 20.8692 9.09163L18.4999 8.26239\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.5 6C14.3125 5.51389 13.4861 4.6875 13 2.5C12.5139 4.6875 11.6875 5.51389 9.5 6C11.6875 6.48611 12.5139 7.3125 13 9.5C13.4861 7.3125 14.3125 6.48611 16.5 6Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
7202
|
+
"iconName": "cursor-ai, agent, magic",
|
|
7203
|
+
"variant": {
|
|
7204
|
+
"join": "round",
|
|
7205
|
+
"filled": "off",
|
|
7206
|
+
"radius": "1",
|
|
7207
|
+
"stroke": "1"
|
|
7208
|
+
},
|
|
7209
|
+
"createdAt": "2025-09-05T13:00:48.653264+00:00",
|
|
7210
|
+
"packageName": "round-outlined-radius-1-stroke-1",
|
|
7211
|
+
"componentName": "IconCursorAi"
|
|
7212
|
+
},
|
|
7199
7213
|
{
|
|
7200
7214
|
"category": "Arrows",
|
|
7201
7215
|
"svg": "<path d=\"M11 2.5V4.5M17.1569 4.84326L15.5962 6.40392M6.40381 15.5962L4.84315 17.1569M4.5 11H2.5M6.40381 6.40381L4.84315 4.84315M14.2997 21.2441L9.96258 10.287C9.882 10.0835 10.0835 9.882 10.287 9.96258L21.2441 14.2997C21.4428 14.3784 21.4576 14.6539 21.2685 14.7534L17.0687 16.9639C17.0239 16.9874 16.9874 17.0239 16.9639 17.0687L14.7534 21.2685C14.6539 21.4576 14.3784 21.4428 14.2997 21.2441Z\" stroke=\"currentColor\" stroke-width=\"1.04545\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -7672,6 +7686,20 @@
|
|
|
7672
7686
|
"packageName": "round-outlined-radius-1-stroke-1",
|
|
7673
7687
|
"componentName": "IconDishwasher"
|
|
7674
7688
|
},
|
|
7689
|
+
{
|
|
7690
|
+
"category": "Edit",
|
|
7691
|
+
"svg": "<path d=\"M12 3.5V20.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M2.5 12H8.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M15.5 12H21.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M15.5 7.5L20.5 3.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M20.5 20.5L15.5 16.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M2.5 16H8.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M2.5 8H8.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
|
|
7692
|
+
"iconName": "dispersion, refraction",
|
|
7693
|
+
"variant": {
|
|
7694
|
+
"join": "round",
|
|
7695
|
+
"filled": "off",
|
|
7696
|
+
"radius": "1",
|
|
7697
|
+
"stroke": "1"
|
|
7698
|
+
},
|
|
7699
|
+
"createdAt": "2025-09-05T13:00:48.653264+00:00",
|
|
7700
|
+
"packageName": "round-outlined-radius-1-stroke-1",
|
|
7701
|
+
"componentName": "IconDispersion"
|
|
7702
|
+
},
|
|
7675
7703
|
{
|
|
7676
7704
|
"category": "Typography",
|
|
7677
7705
|
"svg": "<path d=\"M2.5 12H21.5M2.5 4.5H5.5M10.5 4.5H13.5M18.5 4.5H21.5M2.5 19.5H5.5M10.5 19.5H13.5M18.5 19.5H21.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -10346,6 +10374,20 @@
|
|
|
10346
10374
|
"packageName": "round-outlined-radius-1-stroke-1",
|
|
10347
10375
|
"componentName": "IconGooglePlayStore"
|
|
10348
10376
|
},
|
|
10377
|
+
{
|
|
10378
|
+
"category": "Building",
|
|
10379
|
+
"svg": "<path d=\"M15 12V20\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 12V20\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.5 20.5V12.75C3.5 8.05558 7.30558 4.25 12 4.25V4.25C16.6944 4.25 20.5 8.05558 20.5 12.75V20.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 4V0.5H14.5V2.5H12\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2.5 20.5H21.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2.5 11.5H21.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
10380
|
+
"iconName": "government, bank, building",
|
|
10381
|
+
"variant": {
|
|
10382
|
+
"join": "round",
|
|
10383
|
+
"filled": "off",
|
|
10384
|
+
"radius": "1",
|
|
10385
|
+
"stroke": "1"
|
|
10386
|
+
},
|
|
10387
|
+
"createdAt": "2025-09-04T17:00:33.365271+00:00",
|
|
10388
|
+
"packageName": "round-outlined-radius-1-stroke-1",
|
|
10389
|
+
"componentName": "IconGovernment"
|
|
10390
|
+
},
|
|
10349
10391
|
{
|
|
10350
10392
|
"category": "Things",
|
|
10351
10393
|
"svg": "<path d=\"M23.5001 9.00299L11.9999 14.5L0.5 9.00299L11.9999 3.5L23.5001 9.00299ZM23.5001 9.00299V15.25M4.5001 11.2542V16.3778C4.5001 16.7626 4.72065 17.1133 5.06736 17.2798L11.5672 20.4015C11.8407 20.5328 12.1591 20.5328 12.4326 20.4015L18.9328 17.2798C19.2795 17.1133 19.5001 16.7626 19.5001 16.3778V11.2542\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -513,6 +513,7 @@ export type CentralIconName =
|
|
|
513
513
|
| "IconCursor1"
|
|
514
514
|
| "IconCursor2"
|
|
515
515
|
| "IconCursor3"
|
|
516
|
+
| "IconCursorAi"
|
|
516
517
|
| "IconCursorClick"
|
|
517
518
|
| "IconCursorList"
|
|
518
519
|
| "IconCurtain"
|
|
@@ -547,6 +548,7 @@ export type CentralIconName =
|
|
|
547
548
|
| "IconDirectorChair"
|
|
548
549
|
| "IconDiscord"
|
|
549
550
|
| "IconDishwasher"
|
|
551
|
+
| "IconDispersion"
|
|
550
552
|
| "IconDivider"
|
|
551
553
|
| "IconDollar"
|
|
552
554
|
| "IconDonut"
|
|
@@ -738,6 +740,7 @@ export type CentralIconName =
|
|
|
738
740
|
| "IconGolfBall"
|
|
739
741
|
| "IconGoogle"
|
|
740
742
|
| "IconGooglePlayStore"
|
|
743
|
+
| "IconGovernment"
|
|
741
744
|
| "IconGraduateCap"
|
|
742
745
|
| "IconGreenPower"
|
|
743
746
|
| "IconGrok"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-1-stroke-1",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"style": "round-outlined-radius-1-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-1-stroke-1/IconHome';",
|
|
@@ -11,16 +11,17 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1522,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
|
-
"count":
|
|
17
|
+
"count": 33,
|
|
18
18
|
"icons": [
|
|
19
19
|
"IconAppleIntelligenceIcon",
|
|
20
20
|
"IconBoxSparkle",
|
|
21
21
|
"IconBrain1",
|
|
22
22
|
"IconBrain2",
|
|
23
23
|
"IconBroomSparkle",
|
|
24
|
+
"IconCursorAi",
|
|
24
25
|
"IconCuteRobot",
|
|
25
26
|
"IconEyeSparkle",
|
|
26
27
|
"IconFortuneTellerBall",
|
|
@@ -200,7 +201,7 @@
|
|
|
200
201
|
]
|
|
201
202
|
},
|
|
202
203
|
"Building": {
|
|
203
|
-
"count":
|
|
204
|
+
"count": 22,
|
|
204
205
|
"icons": [
|
|
205
206
|
"IconBank",
|
|
206
207
|
"IconBlock",
|
|
@@ -208,6 +209,7 @@
|
|
|
208
209
|
"IconCourt",
|
|
209
210
|
"IconDoor",
|
|
210
211
|
"IconGarage",
|
|
212
|
+
"IconGovernment",
|
|
211
213
|
"IconHome",
|
|
212
214
|
"IconHomeCircle",
|
|
213
215
|
"IconHomeDoor",
|
|
@@ -427,7 +429,7 @@
|
|
|
427
429
|
]
|
|
428
430
|
},
|
|
429
431
|
"Edit": {
|
|
430
|
-
"count":
|
|
432
|
+
"count": 67,
|
|
431
433
|
"icons": [
|
|
432
434
|
"IconAddKeyframe",
|
|
433
435
|
"IconBezier",
|
|
@@ -454,6 +456,7 @@
|
|
|
454
456
|
"IconColorSwatch",
|
|
455
457
|
"IconComponents",
|
|
456
458
|
"IconCornerRadius",
|
|
459
|
+
"IconDispersion",
|
|
457
460
|
"IconEditBig",
|
|
458
461
|
"IconEditSmall1",
|
|
459
462
|
"IconEditSmall2",
|
|
@@ -2223,6 +2226,7 @@
|
|
|
2223
2226
|
"IconCursor1": "cursor-1, arrow",
|
|
2224
2227
|
"IconCursor2": "cursor-2, arrow",
|
|
2225
2228
|
"IconCursor3": "cursor-3, arrow",
|
|
2229
|
+
"IconCursorAi": "cursor-ai, agent, magic",
|
|
2226
2230
|
"IconCursorClick": "cursor-click, arrow, clickbait",
|
|
2227
2231
|
"IconCursorList": "cursor-list, cursor, list",
|
|
2228
2232
|
"IconCurtain": "curtain, showtime, theater",
|
|
@@ -2257,6 +2261,7 @@
|
|
|
2257
2261
|
"IconDirectorChair": "director-chair, chair",
|
|
2258
2262
|
"IconDiscord": "discord",
|
|
2259
2263
|
"IconDishwasher": "dishwasher, clean",
|
|
2264
|
+
"IconDispersion": "dispersion, refraction",
|
|
2260
2265
|
"IconDivider": "divider, add-line",
|
|
2261
2266
|
"IconDollar": "dollar, currency, money, coin, USD",
|
|
2262
2267
|
"IconDonut": "donut",
|
|
@@ -2448,6 +2453,7 @@
|
|
|
2448
2453
|
"IconGolfBall": "golf-ball",
|
|
2449
2454
|
"IconGoogle": "google",
|
|
2450
2455
|
"IconGooglePlayStore": "google-play-store",
|
|
2456
|
+
"IconGovernment": "government, bank, building",
|
|
2451
2457
|
"IconGraduateCap": "graduate-cap, study, education, academic, student",
|
|
2452
2458
|
"IconGreenPower": "green-power, green-energy",
|
|
2453
2459
|
"IconGrok": "grok",
|
package/license-check.js
CHANGED
package/package.json
CHANGED
package/tsx-icons.json
CHANGED
|
@@ -3598,6 +3598,13 @@
|
|
|
3598
3598
|
"iconName": "cursor-3, arrow",
|
|
3599
3599
|
"pathname": "src/IconCursor3"
|
|
3600
3600
|
},
|
|
3601
|
+
{
|
|
3602
|
+
"svg": "<Path d=\"M6.49989 4.06239L4.71021 3.436C3.91939 3.15921 3.15921 3.91939 3.436 4.71021L9.09163 20.8692C9.39083 21.724 10.5815 21.7726 10.9493 20.945L13.8687 14.3764C13.9692 14.1501 14.1501 13.9692 14.3764 13.8687L20.945 10.9493C21.7726 10.5815 21.724 9.39083 20.8692 9.09163L18.4999 8.26239\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16.5 6C14.3125 5.51389 13.4861 4.6875 13 2.5C12.5139 4.6875 11.6875 5.51389 9.5 6C11.6875 6.48611 12.5139 7.3125 13 9.5C13.4861 7.3125 14.3125 6.48611 16.5 6Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>",
|
|
3603
|
+
"tags": "Path",
|
|
3604
|
+
"componentName": "IconCursorAi",
|
|
3605
|
+
"iconName": "cursor-ai, agent, magic",
|
|
3606
|
+
"pathname": "src/IconCursorAi"
|
|
3607
|
+
},
|
|
3601
3608
|
{
|
|
3602
3609
|
"svg": "<Path d=\"M11 2.5V4.5M17.1569 4.84326L15.5962 6.40392M6.40381 15.5962L4.84315 17.1569M4.5 11H2.5M6.40381 6.40381L4.84315 4.84315M14.2997 21.2441L9.96258 10.287C9.882 10.0835 10.0835 9.882 10.287 9.96258L21.2441 14.2997C21.4428 14.3784 21.4576 14.6539 21.2685 14.7534L17.0687 16.9639C17.0239 16.9874 16.9874 17.0239 16.9639 17.0687L14.7534 21.2685C14.6539 21.4576 14.3784 21.4428 14.2997 21.2441Z\" stroke=\"currentColor\" strokeWidth=\"1.04545\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>",
|
|
3603
3610
|
"tags": "Path",
|
|
@@ -3836,6 +3843,13 @@
|
|
|
3836
3843
|
"iconName": "dishwasher, clean",
|
|
3837
3844
|
"pathname": "src/IconDishwasher"
|
|
3838
3845
|
},
|
|
3846
|
+
{
|
|
3847
|
+
"svg": "<Path d=\"M12 3.5V20.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M2.5 12H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M15.5 12H21.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M15.5 7.5L20.5 3.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M20.5 20.5L15.5 16.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M2.5 16H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/><Path d=\"M2.5 8H8.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/>",
|
|
3848
|
+
"tags": "Path",
|
|
3849
|
+
"componentName": "IconDispersion",
|
|
3850
|
+
"iconName": "dispersion, refraction",
|
|
3851
|
+
"pathname": "src/IconDispersion"
|
|
3852
|
+
},
|
|
3839
3853
|
{
|
|
3840
3854
|
"svg": "<Path d=\"M2.5 12H21.5M2.5 4.5H5.5M10.5 4.5H13.5M18.5 4.5H21.5M2.5 19.5H5.5M10.5 19.5H13.5M18.5 19.5H21.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>",
|
|
3841
3855
|
"tags": "Path",
|
|
@@ -5173,6 +5187,13 @@
|
|
|
5173
5187
|
"iconName": "google-play-store",
|
|
5174
5188
|
"pathname": "src/IconGooglePlayStore"
|
|
5175
5189
|
},
|
|
5190
|
+
{
|
|
5191
|
+
"svg": "<Path d=\"M15 12V20\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9 12V20\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.5 20.5V12.75C3.5 8.05558 7.30558 4.25 12 4.25V4.25C16.6944 4.25 20.5 8.05558 20.5 12.75V20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M12 4V0.5H14.5V2.5H12\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M2.5 20.5H21.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M2.5 11.5H21.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>",
|
|
5192
|
+
"tags": "Path",
|
|
5193
|
+
"componentName": "IconGovernment",
|
|
5194
|
+
"iconName": "government, bank, building",
|
|
5195
|
+
"pathname": "src/IconGovernment"
|
|
5196
|
+
},
|
|
5176
5197
|
{
|
|
5177
5198
|
"svg": "<Path d=\"M23.5001 9.00299L11.9999 14.5L0.5 9.00299L11.9999 3.5L23.5001 9.00299ZM23.5001 9.00299V15.25M4.5001 11.2542V16.3778C4.5001 16.7626 4.72065 17.1133 5.06736 17.2798L11.5672 20.4015C11.8407 20.5328 12.1591 20.5328 12.4326 20.4015L18.9328 17.2798C19.2795 17.1133 19.5001 16.7626 19.5001 16.3778V11.2542\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>",
|
|
5178
5199
|
"tags": "Path",
|