@central-icons-react-native/square-filled-radius-0-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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconCursorAi: FC<CentralIconBaseProps>;
4
+ export default IconCursorAi;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(l=L(o,e))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(I(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var d={};P(d,{IconCursorAi:()=>i,default:()=>v});module.exports=g(d);var C=m(require("react"));var s=m(require("react")),f=require("react-native-svg"),c=({children:r,size:o=24,...t})=>s.default.createElement(f.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"),i=r=>C.default.createElement(c,{...r},C.default.createElement(p.Path,{d:"M13.5838 2.1084C13.8461 3.28849 14.1835 4.02117 14.6896 4.52722C15.1956 5.03328 15.9283 5.37075 17.1084 5.633V6.5838C15.9283 6.84605 15.1956 7.18351 14.6896 7.68957C14.1835 8.19563 13.8461 8.9283 13.5838 10.1084H12.633C12.3707 8.9283 12.0333 8.19563 11.5272 7.68957C11.0212 7.18351 10.2885 6.84605 9.1084 6.5838V5.633C10.2885 5.37075 11.0212 5.03328 11.5272 4.52722C12.0333 4.02117 12.3707 3.28849 12.633 2.1084H13.5838Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M8.1084 5.00391V7.38574L8.8916 7.55957C9.99659 7.80514 10.5111 8.08724 10.8203 8.39648C11.1296 8.70572 11.4117 9.22021 11.6572 10.3252L11.8311 11.1084H14.3857L14.5596 10.3252C14.8051 9.22021 15.0872 8.70572 15.3965 8.39648C15.4851 8.30787 15.5913 8.22261 15.7227 8.13867L16.7979 8.58203L22.2939 10.4023L14.4023 14.4219L9.89453 22.1768L2.89453 2.85742L8.1084 5.00391Z",fill:"currentColor"})),v=i;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=\"M13.5838 2.1084C13.8461 3.28849 14.1835 4.02117 14.6896 4.52722C15.1956 5.03328 15.9283 5.37075 17.1084 5.633V6.5838C15.9283 6.84605 15.1956 7.18351 14.6896 7.68957C14.1835 8.19563 13.8461 8.9283 13.5838 10.1084H12.633C12.3707 8.9283 12.0333 8.19563 11.5272 7.68957C11.0212 7.18351 10.2885 6.84605 9.1084 6.5838V5.633C10.2885 5.37075 11.0212 5.03328 11.5272 4.52722C12.0333 4.02117 12.3707 3.28849 12.633 2.1084H13.5838Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.1084 5.00391V7.38574L8.8916 7.55957C9.99659 7.80514 10.5111 8.08724 10.8203 8.39648C11.1296 8.70572 11.4117 9.22021 11.6572 10.3252L11.8311 11.1084H14.3857L14.5596 10.3252C14.8051 9.22021 15.0872 8.70572 15.3965 8.39648C15.4851 8.30787 15.5913 8.22261 15.7227 8.13867L16.7979 8.58203L22.2939 10.4023L14.4023 14.4219L9.89453 22.1768L2.89453 2.85742L8.1084 5.00391Z\"\n fill=\"currentColor\"\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,uaACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iXACF,KAAK,eACP,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 t from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...C})=>p.createElement(l,{...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:"M13.5838 2.1084C13.8461 3.28849 14.1835 4.02117 14.6896 4.52722C15.1956 5.03328 15.9283 5.37075 17.1084 5.633V6.5838C15.9283 6.84605 15.1956 7.18351 14.6896 7.68957C14.1835 8.19563 13.8461 8.9283 13.5838 10.1084H12.633C12.3707 8.9283 12.0333 8.19563 11.5272 7.68957C11.0212 7.18351 10.2885 6.84605 9.1084 6.5838V5.633C10.2885 5.37075 11.0212 5.03328 11.5272 4.52722C12.0333 4.02117 12.3707 3.28849 12.633 2.1084H13.5838Z",fill:"currentColor"}),t.createElement(n,{d:"M8.1084 5.00391V7.38574L8.8916 7.55957C9.99659 7.80514 10.5111 8.08724 10.8203 8.39648C11.1296 8.70572 11.4117 9.22021 11.6572 10.3252L11.8311 11.1084H14.3857L14.5596 10.3252C14.8051 9.22021 15.0872 8.70572 15.3965 8.39648C15.4851 8.30787 15.5913 8.22261 15.7227 8.13867L16.7979 8.58203L22.2939 10.4023L14.4023 14.4219L9.89453 22.1768L2.89453 2.85742L8.1084 5.00391Z",fill:"currentColor"})),x=a;export{a as IconCursorAi,x 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=\"M13.5838 2.1084C13.8461 3.28849 14.1835 4.02117 14.6896 4.52722C15.1956 5.03328 15.9283 5.37075 17.1084 5.633V6.5838C15.9283 6.84605 15.1956 7.18351 14.6896 7.68957C14.1835 8.19563 13.8461 8.9283 13.5838 10.1084H12.633C12.3707 8.9283 12.0333 8.19563 11.5272 7.68957C11.0212 7.18351 10.2885 6.84605 9.1084 6.5838V5.633C10.2885 5.37075 11.0212 5.03328 11.5272 4.52722C12.0333 4.02117 12.3707 3.28849 12.633 2.1084H13.5838Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M8.1084 5.00391V7.38574L8.8916 7.55957C9.99659 7.80514 10.5111 8.08724 10.8203 8.39648C11.1296 8.70572 11.4117 9.22021 11.6572 10.3252L11.8311 11.1084H14.3857L14.5596 10.3252C14.8051 9.22021 15.0872 8.70572 15.3965 8.39648C15.4851 8.30787 15.5913 8.22261 15.7227 8.13867L16.7979 8.58203L22.2939 10.4023L14.4023 14.4219L9.89453 22.1768L2.89453 2.85742L8.1084 5.00391Z\"\n fill=\"currentColor\"\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,uaACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iXACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCursorAi","props","React","CentralIconBase","IconCursorAi_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconDispersion: FC<CentralIconBaseProps>;
4
+ export default IconDispersion;
@@ -0,0 +1,2 @@
1
+ "use strict";var H=Object.create;var p=Object.defineProperty;var V=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},f=(r,o,n,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of a(o))!B.call(r,e)&&e!==n&&p(r,e,{get:()=>o[e],enumerable:!(C=V(o,e))||C.enumerable});return r};var i=(r,o,n)=>(n=r!=null?H(d(r)):{},f(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),L=r=>f(p({},"__esModule",{value:!0}),r);var M={};I(M,{IconDispersion:()=>c,default:()=>x});module.exports=L(M);var l=i(require("react"));var s=i(require("react")),m=require("react-native-svg"),u=({children:r,size:o=24,...n})=>s.default.createElement(m.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),c=r=>l.default.createElement(u,{...r},l.default.createElement(t.Path,{d:"M21.2031 20.4219L20.5781 21.2031L14.7969 16.5781L15.4219 15.7969L21.2031 20.4219Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M12.5 21H11.5V3H12.5V21Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M9 16.5H2V15.5H9V16.5Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M9 12.5H2V11.5H9V12.5Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M22 12.5H15V11.5H22V12.5Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M9 8.5H2V7.5H9V8.5Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M21.2031 3.57812L15.4219 8.20312L14.7969 7.42188L20.5781 2.79688L21.2031 3.57812Z",fill:"currentColor"})),x=c;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\n d=\"M21.2031 20.4219L20.5781 21.2031L14.7969 16.5781L15.4219 15.7969L21.2031 20.4219Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M12.5 21H11.5V3H12.5V21Z\" fill=\"currentColor\" />\n <Path d=\"M9 16.5H2V15.5H9V16.5Z\" fill=\"currentColor\" />\n <Path d=\"M9 12.5H2V11.5H9V12.5Z\" fill=\"currentColor\" />\n <Path d=\"M22 12.5H15V11.5H22V12.5Z\" fill=\"currentColor\" />\n <Path d=\"M9 8.5H2V7.5H9V8.5Z\" fill=\"currentColor\" />\n <Path\n d=\"M21.2031 3.57812L15.4219 8.20312L14.7969 7.42188L20.5781 2.79688L21.2031 3.57812Z\"\n fill=\"currentColor\"\n />\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,QACC,EAAE,oFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,2BAA2B,KAAK,eAAe,EACvD,EAAAA,QAAA,cAAC,QAAK,EAAE,yBAAyB,KAAK,eAAe,EACrD,EAAAA,QAAA,cAAC,QAAK,EAAE,yBAAyB,KAAK,eAAe,EACrD,EAAAA,QAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxD,EAAAA,QAAA,cAAC,QAAK,EAAE,sBAAsB,KAAK,eAAe,EAClD,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,CACF,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 p from"react";import{Svg as C}from"react-native-svg";var t=({children:l,size:n=24,...e})=>p.createElement(C,{...e,width:typeof n=="number"?`${n}px`:n,height:typeof n=="number"?`${n}px`:n,viewBox:"0 0 24 24",fill:"none"},l);import{Path as o}from"react-native-svg";var f=l=>r.createElement(t,{...l},r.createElement(o,{d:"M21.2031 20.4219L20.5781 21.2031L14.7969 16.5781L15.4219 15.7969L21.2031 20.4219Z",fill:"currentColor"}),r.createElement(o,{d:"M12.5 21H11.5V3H12.5V21Z",fill:"currentColor"}),r.createElement(o,{d:"M9 16.5H2V15.5H9V16.5Z",fill:"currentColor"}),r.createElement(o,{d:"M9 12.5H2V11.5H9V12.5Z",fill:"currentColor"}),r.createElement(o,{d:"M22 12.5H15V11.5H22V12.5Z",fill:"currentColor"}),r.createElement(o,{d:"M9 8.5H2V7.5H9V8.5Z",fill:"currentColor"}),r.createElement(o,{d:"M21.2031 3.57812L15.4219 8.20312L14.7969 7.42188L20.5781 2.79688L21.2031 3.57812Z",fill:"currentColor"})),B=f;export{f 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\n d=\"M21.2031 20.4219L20.5781 21.2031L14.7969 16.5781L15.4219 15.7969L21.2031 20.4219Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M12.5 21H11.5V3H12.5V21Z\" fill=\"currentColor\" />\n <Path d=\"M9 16.5H2V15.5H9V16.5Z\" fill=\"currentColor\" />\n <Path d=\"M9 12.5H2V11.5H9V12.5Z\" fill=\"currentColor\" />\n <Path d=\"M22 12.5H15V11.5H22V12.5Z\" fill=\"currentColor\" />\n <Path d=\"M9 8.5H2V7.5H9V8.5Z\" fill=\"currentColor\" />\n <Path\n d=\"M21.2031 3.57812L15.4219 8.20312L14.7969 7.42188L20.5781 2.79688L21.2031 3.57812Z\"\n fill=\"currentColor\"\n />\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,CACC,EAAE,oFACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,2BAA2B,KAAK,eAAe,EACvDG,EAAA,cAACH,EAAA,CAAK,EAAE,yBAAyB,KAAK,eAAe,EACrDG,EAAA,cAACH,EAAA,CAAK,EAAE,yBAAyB,KAAK,eAAe,EACrDG,EAAA,cAACH,EAAA,CAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDG,EAAA,cAACH,EAAA,CAAK,EAAE,sBAAsB,KAAK,eAAe,EAClDG,EAAA,cAACH,EAAA,CACC,EAAE,oFACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDispersion","props","React","CentralIconBase","IconDispersion_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconGovernment: FC<CentralIconBaseProps>;
4
+ export default IconGovernment;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var t=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var v=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},C=(o,r,e,l)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of u(r))!B.call(o,n)&&n!==e&&t(o,n,{get:()=>r[n],enumerable:!(l=i(r,n))||l.enumerable});return o};var a=(o,r,e)=>(e=o!=null?f(v(o)):{},C(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),d=o=>C(t({},"__esModule",{value:!0}),o);var P={};I(P,{IconGovernment:()=>c,default:()=>x});module.exports=d(P);var p=a(require("react"));var H=a(require("react")),V=require("react-native-svg"),m=({children:o,size:r=24,...e})=>H.default.createElement(V.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var s=require("react-native-svg"),c=o=>p.default.createElement(m,{...o},p.default.createElement(s.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M15 3H12.5V3.76367C16.6472 3.99076 20.0458 7.02577 20.8291 11H22V12H20.9658C20.9862 12.2474 21 12.4973 21 12.75V20H22V21H2V20H3V12.75C3 12.4973 3.01376 12.2474 3.03418 12H2V11H3.1709C3.95416 7.02577 7.35278 3.99076 11.5 3.76367V0H15V3ZM4.03613 12C4.01317 12.247 4 12.497 4 12.75V20H8.5V12H4.03613ZM9.5 20H14.5V12H9.5V20ZM15.5 20H20V12.75C20 12.497 19.9868 12.247 19.9639 12H15.5V20Z",fill:"currentColor"})),x=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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15 3H12.5V3.76367C16.6472 3.99076 20.0458 7.02577 20.8291 11H22V12H20.9658C20.9862 12.2474 21 12.4973 21 12.75V20H22V21H2V20H3V12.75C3 12.4973 3.01376 12.2474 3.03418 12H2V11H3.1709C3.95416 7.02577 7.35278 3.99076 11.5 3.76367V0H15V3ZM4.03613 12C4.01317 12.247 4 12.497 4 12.75V20H8.5V12H4.03613ZM9.5 20H14.5V12H9.5V20ZM15.5 20H20V12.75C20 12.497 19.9868 12.247 19.9639 12H15.5V20Z\"\n fill=\"currentColor\"\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,SAAS,UACT,SAAS,UACT,EAAE,iYACF,KAAK,eACP,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 n from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:r,size:o=24,...t})=>p.createElement(l,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as C}from"react-native-svg";var a=r=>n.createElement(e,{...r},n.createElement(C,{fillRule:"evenodd",clipRule:"evenodd",d:"M15 3H12.5V3.76367C16.6472 3.99076 20.0458 7.02577 20.8291 11H22V12H20.9658C20.9862 12.2474 21 12.4973 21 12.75V20H22V21H2V20H3V12.75C3 12.4973 3.01376 12.2474 3.03418 12H2V11H3.1709C3.95416 7.02577 7.35278 3.99076 11.5 3.76367V0H15V3ZM4.03613 12C4.01317 12.247 4 12.497 4 12.75V20H8.5V12H4.03613ZM9.5 20H14.5V12H9.5V20ZM15.5 20H20V12.75C20 12.497 19.9868 12.247 19.9639 12H15.5V20Z",fill:"currentColor"})),B=a;export{a 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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15 3H12.5V3.76367C16.6472 3.99076 20.0458 7.02577 20.8291 11H22V12H20.9658C20.9862 12.2474 21 12.4973 21 12.75V20H22V21H2V20H3V12.75C3 12.4973 3.01376 12.2474 3.03418 12H2V11H3.1709C3.95416 7.02577 7.35278 3.99076 11.5 3.76367V0H15V3ZM4.03613 12C4.01317 12.247 4 12.497 4 12.75V20H8.5V12H4.03613ZM9.5 20H14.5V12H9.5V20ZM15.5 20H20V12.75C20 12.497 19.9868 12.247 19.9639 12H15.5V20Z\"\n fill=\"currentColor\"\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,SAAS,UACT,SAAS,UACT,EAAE,iYACF,KAAK,eACP,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
@@ -7196,6 +7196,20 @@
7196
7196
  "packageName": "square-filled-radius-0-stroke-1",
7197
7197
  "componentName": "IconCursor3"
7198
7198
  },
7199
+ {
7200
+ "category": "AI & Magic",
7201
+ "svg": "<path d=\"M13.5838 2.1084C13.8461 3.28849 14.1835 4.02117 14.6896 4.52722C15.1956 5.03328 15.9283 5.37075 17.1084 5.633V6.5838C15.9283 6.84605 15.1956 7.18351 14.6896 7.68957C14.1835 8.19563 13.8461 8.9283 13.5838 10.1084H12.633C12.3707 8.9283 12.0333 8.19563 11.5272 7.68957C11.0212 7.18351 10.2885 6.84605 9.1084 6.5838V5.633C10.2885 5.37075 11.0212 5.03328 11.5272 4.52722C12.0333 4.02117 12.3707 3.28849 12.633 2.1084H13.5838Z\" fill=\"currentColor\"/><path d=\"M8.1084 5.00391V7.38574L8.8916 7.55957C9.99659 7.80514 10.5111 8.08724 10.8203 8.39648C11.1296 8.70572 11.4117 9.22021 11.6572 10.3252L11.8311 11.1084H14.3857L14.5596 10.3252C14.8051 9.22021 15.0872 8.70572 15.3965 8.39648C15.4851 8.30787 15.5913 8.22261 15.7227 8.13867L16.7979 8.58203L22.2939 10.4023L14.4023 14.4219L9.89453 22.1768L2.89453 2.85742L8.1084 5.00391Z\" fill=\"currentColor\"/>",
7202
+ "iconName": "cursor-ai, agent, magic",
7203
+ "variant": {
7204
+ "join": "square",
7205
+ "filled": "on",
7206
+ "radius": "0",
7207
+ "stroke": "1"
7208
+ },
7209
+ "createdAt": "2025-09-05T13:00:48.653264+00:00",
7210
+ "packageName": "square-filled-radius-0-stroke-1",
7211
+ "componentName": "IconCursorAi"
7212
+ },
7199
7213
  {
7200
7214
  "category": "Arrows",
7201
7215
  "svg": "<path d=\"M11.5 5V2H10.5V5H11.5Z\" fill=\"currentColor\"/><path d=\"M9.07812 9.07812L22.7247 14.4181L17.3847 17.3847L14.4181 22.7247L9.07812 9.07812Z\" fill=\"currentColor\"/><path d=\"M17.8634 4.84285L15.5956 7.11062L14.8885 6.40351L17.1562 4.13574L17.8634 4.84285Z\" fill=\"currentColor\"/><path d=\"M4.84364 17.8635L7.1114 15.5958L6.4043 14.8887L4.13653 17.1564L4.84364 17.8635Z\" fill=\"currentColor\"/><path d=\"M5 11.5H2V10.5H5V11.5Z\" fill=\"currentColor\"/><path d=\"M4.13645 4.84364L6.40422 7.1114L7.11133 6.4043L4.84356 4.13653L4.13645 4.84364Z\" fill=\"currentColor\"/>",
@@ -7672,6 +7686,20 @@
7672
7686
  "packageName": "square-filled-radius-0-stroke-1",
7673
7687
  "componentName": "IconDishwasher"
7674
7688
  },
7689
+ {
7690
+ "category": "Edit",
7691
+ "svg": "<path d=\"M21.2031 20.4219L20.5781 21.2031L14.7969 16.5781L15.4219 15.7969L21.2031 20.4219Z\" fill=\"currentColor\"/><path d=\"M12.5 21H11.5V3H12.5V21Z\" fill=\"currentColor\"/><path d=\"M9 16.5H2V15.5H9V16.5Z\" fill=\"currentColor\"/><path d=\"M9 12.5H2V11.5H9V12.5Z\" fill=\"currentColor\"/><path d=\"M22 12.5H15V11.5H22V12.5Z\" fill=\"currentColor\"/><path d=\"M9 8.5H2V7.5H9V8.5Z\" fill=\"currentColor\"/><path d=\"M21.2031 3.57812L15.4219 8.20312L14.7969 7.42188L20.5781 2.79688L21.2031 3.57812Z\" fill=\"currentColor\"/>",
7692
+ "iconName": "dispersion, refraction",
7693
+ "variant": {
7694
+ "join": "square",
7695
+ "filled": "on",
7696
+ "radius": "0",
7697
+ "stroke": "1"
7698
+ },
7699
+ "createdAt": "2025-09-05T13:00:48.653264+00:00",
7700
+ "packageName": "square-filled-radius-0-stroke-1",
7701
+ "componentName": "IconDispersion"
7702
+ },
7675
7703
  {
7676
7704
  "category": "Typography",
7677
7705
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 4H6V5H2V4ZM10 4H14V5H10V4ZM18 4H22V5H18V4ZM2 11.5H22V12.5H2V11.5ZM2 19H6V20H2V19ZM10 19H14V20H10V19ZM18 19H22V20H18V19Z\" fill=\"currentColor\"/>",
@@ -10346,6 +10374,20 @@
10346
10374
  "packageName": "square-filled-radius-0-stroke-1",
10347
10375
  "componentName": "IconGooglePlayStore"
10348
10376
  },
10377
+ {
10378
+ "category": "Building",
10379
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15 3H12.5V3.76367C16.6472 3.99076 20.0458 7.02577 20.8291 11H22V12H20.9658C20.9862 12.2474 21 12.4973 21 12.75V20H22V21H2V20H3V12.75C3 12.4973 3.01376 12.2474 3.03418 12H2V11H3.1709C3.95416 7.02577 7.35278 3.99076 11.5 3.76367V0H15V3ZM4.03613 12C4.01317 12.247 4 12.497 4 12.75V20H8.5V12H4.03613ZM9.5 20H14.5V12H9.5V20ZM15.5 20H20V12.75C20 12.497 19.9868 12.247 19.9639 12H15.5V20Z\" fill=\"currentColor\"/>",
10380
+ "iconName": "government, bank, building",
10381
+ "variant": {
10382
+ "join": "square",
10383
+ "filled": "on",
10384
+ "radius": "0",
10385
+ "stroke": "1"
10386
+ },
10387
+ "createdAt": "2025-09-04T17:00:33.365271+00:00",
10388
+ "packageName": "square-filled-radius-0-stroke-1",
10389
+ "componentName": "IconGovernment"
10390
+ },
10349
10391
  {
10350
10392
  "category": "Things",
10351
10393
  "svg": "<g clip-path=\"url(#clip0_9850_24785)\"><path d=\"M12.0019 2.93994L-0.0078125 8.99999L12.0019 15.06L23.0021 9.50957V15.75H24.0021V9.005L24.012 8.99999L12.0019 2.93994Z\" fill=\"currentColor\"/><path d=\"M4.50195 12.1556L4.50189 17.5518L12.0018 21.0518L19.5019 17.5518L19.5018 12.1556L12.0018 15.94L4.50195 12.1556Z\" fill=\"currentColor\"/></g><defs><clipPath id=\"clip0_9850_24785\"><rect width=\"24\" height=\"24\" fill=\"white\"/></clipPath></defs>",
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/square-filled-radius-0-stroke-1",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "style": "square-filled-radius-0-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-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": 1519,
14
+ "totalIcons": 1522,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
- "count": 32,
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": 21,
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": 66,
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
@@ -18,7 +18,7 @@ const licenseCheck = async () => {
18
18
  },
19
19
  body: JSON.stringify({
20
20
  package: "central-icons-react-native/square-filled-radius-0-stroke-1",
21
- version: "1.0.2",
21
+ version: "1.0.4",
22
22
  }),
23
23
  signal: controller.signal,
24
24
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@central-icons-react-native/square-filled-radius-0-stroke-1",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "homepage": "https://iconists.co/central",
6
6
  "bugs": {
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=\"M13.5838 2.1084C13.8461 3.28849 14.1835 4.02117 14.6896 4.52722C15.1956 5.03328 15.9283 5.37075 17.1084 5.633V6.5838C15.9283 6.84605 15.1956 7.18351 14.6896 7.68957C14.1835 8.19563 13.8461 8.9283 13.5838 10.1084H12.633C12.3707 8.9283 12.0333 8.19563 11.5272 7.68957C11.0212 7.18351 10.2885 6.84605 9.1084 6.5838V5.633C10.2885 5.37075 11.0212 5.03328 11.5272 4.52722C12.0333 4.02117 12.3707 3.28849 12.633 2.1084H13.5838Z\" fill=\"currentColor\"/><Path d=\"M8.1084 5.00391V7.38574L8.8916 7.55957C9.99659 7.80514 10.5111 8.08724 10.8203 8.39648C11.1296 8.70572 11.4117 9.22021 11.6572 10.3252L11.8311 11.1084H14.3857L14.5596 10.3252C14.8051 9.22021 15.0872 8.70572 15.3965 8.39648C15.4851 8.30787 15.5913 8.22261 15.7227 8.13867L16.7979 8.58203L22.2939 10.4023L14.4023 14.4219L9.89453 22.1768L2.89453 2.85742L8.1084 5.00391Z\" fill=\"currentColor\"/>",
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.5 5V2H10.5V5H11.5Z\" fill=\"currentColor\"/><Path d=\"M9.07812 9.07812L22.7247 14.4181L17.3847 17.3847L14.4181 22.7247L9.07812 9.07812Z\" fill=\"currentColor\"/><Path d=\"M17.8634 4.84285L15.5956 7.11062L14.8885 6.40351L17.1562 4.13574L17.8634 4.84285Z\" fill=\"currentColor\"/><Path d=\"M4.84364 17.8635L7.1114 15.5958L6.4043 14.8887L4.13653 17.1564L4.84364 17.8635Z\" fill=\"currentColor\"/><Path d=\"M5 11.5H2V10.5H5V11.5Z\" fill=\"currentColor\"/><Path d=\"M4.13645 4.84364L6.40422 7.1114L7.11133 6.4043L4.84356 4.13653L4.13645 4.84364Z\" fill=\"currentColor\"/>",
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=\"M21.2031 20.4219L20.5781 21.2031L14.7969 16.5781L15.4219 15.7969L21.2031 20.4219Z\" fill=\"currentColor\"/><Path d=\"M12.5 21H11.5V3H12.5V21Z\" fill=\"currentColor\"/><Path d=\"M9 16.5H2V15.5H9V16.5Z\" fill=\"currentColor\"/><Path d=\"M9 12.5H2V11.5H9V12.5Z\" fill=\"currentColor\"/><Path d=\"M22 12.5H15V11.5H22V12.5Z\" fill=\"currentColor\"/><Path d=\"M9 8.5H2V7.5H9V8.5Z\" fill=\"currentColor\"/><Path d=\"M21.2031 3.57812L15.4219 8.20312L14.7969 7.42188L20.5781 2.79688L21.2031 3.57812Z\" fill=\"currentColor\"/>",
3848
+ "tags": "Path",
3849
+ "componentName": "IconDispersion",
3850
+ "iconName": "dispersion, refraction",
3851
+ "pathname": "src/IconDispersion"
3852
+ },
3839
3853
  {
3840
3854
  "svg": "<Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 4H6V5H2V4ZM10 4H14V5H10V4ZM18 4H22V5H18V4ZM2 11.5H22V12.5H2V11.5ZM2 19H6V20H2V19ZM10 19H14V20H10V19ZM18 19H22V20H18V19Z\" fill=\"currentColor\"/>",
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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15 3H12.5V3.76367C16.6472 3.99076 20.0458 7.02577 20.8291 11H22V12H20.9658C20.9862 12.2474 21 12.4973 21 12.75V20H22V21H2V20H3V12.75C3 12.4973 3.01376 12.2474 3.03418 12H2V11H3.1709C3.95416 7.02577 7.35278 3.99076 11.5 3.76367V0H15V3ZM4.03613 12C4.01317 12.247 4 12.497 4 12.75V20H8.5V12H4.03613ZM9.5 20H14.5V12H9.5V20ZM15.5 20H20V12.75C20 12.497 19.9868 12.247 19.9639 12H15.5V20Z\" fill=\"currentColor\"/>",
5192
+ "tags": "Path",
5193
+ "componentName": "IconGovernment",
5194
+ "iconName": "government, bank, building",
5195
+ "pathname": "src/IconGovernment"
5196
+ },
5176
5197
  {
5177
5198
  "svg": "<G clip-Path=\"url(#clip0_9850_24785)\"><Path d=\"M12.0019 2.93994L-0.0078125 8.99999L12.0019 15.06L23.0021 9.50957V15.75H24.0021V9.005L24.012 8.99999L12.0019 2.93994Z\" fill=\"currentColor\"/><Path d=\"M4.50195 12.1556L4.50189 17.5518L12.0018 21.0518L19.5019 17.5518L19.5018 12.1556L12.0018 15.94L4.50195 12.1556Z\" fill=\"currentColor\"/></G><Defs><ClipPath id=\"clip0_9850_24785\"><Rect width=\"24\" height=\"24\" fill=\"white\"/></ClipPath></Defs>",
5178
5199
  "tags": "ClipPath, Defs, G, Path, Rect",