@central-icons-react-native/round-outlined-radius-2-stroke-2 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 f=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var L=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(s=B(o,e))||s.enumerable});return r};var l=(r,o,t)=>(t=r!=null?f(d(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),P=r=>a(n({},"__esModule",{value:!0}),r);var h={};L(h,{IconCursorAi:()=>u,default:()=>g});module.exports=P(h);var C=l(require("react"));var m=l(require("react")),i=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(i.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),u=r=>C.default.createElement(c,{...r},C.default.createElement(p.Path,{d:"M19.1275 8.15434L19.4844 8.27073C21.2921 8.86019 21.3347 11.402 19.5479 12.0518L14.6725 13.8246C14.3945 13.9257 14.1755 14.1447 14.0744 14.4227L12.2036 19.5674C11.5647 21.3244 9.07915 21.3223 8.44327 19.5642L3.47165 5.81916C2.89165 4.21564 4.45568 2.66835 6.05286 3.26556L7.38283 3.76285",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),C.default.createElement(p.Path,{d:"M16.5669 5.45466C14.5765 4.96575 14.0343 4.4235 13.5453 2.43314C13.4834 2.18096 13.2597 2 13 2C12.7403 2 12.5166 2.18096 12.4547 2.43314C11.9657 4.4235 11.4235 4.96575 9.43314 5.45466C9.18096 5.5166 9 5.74032 9 6C9 6.25968 9.18096 6.4834 9.43314 6.54534C11.4235 7.03425 11.9657 7.5765 12.4547 9.56686C12.5166 9.81904 12.7403 10 13 10C13.2597 10 13.4834 9.81904 13.5453 9.56686C14.0343 7.5765 14.5765 7.03425 16.5669 6.54534C16.819 6.4834 17 6.25968 17 6C17 5.74032 16.819 5.5166 16.5669 5.45466Z",fill:"currentColor"})),g=u;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=\"M19.1275 8.15434L19.4844 8.27073C21.2921 8.86019 21.3347 11.402 19.5479 12.0518L14.6725 13.8246C14.3945 13.9257 14.1755 14.1447 14.0744 14.4227L12.2036 19.5674C11.5647 21.3244 9.07915 21.3223 8.44327 19.5642L3.47165 5.81916C2.89165 4.21564 4.45568 2.66835 6.05286 3.26556L7.38283 3.76285\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5669 5.45466C14.5765 4.96575 14.0343 4.4235 13.5453 2.43314C13.4834 2.18096 13.2597 2 13 2C12.7403 2 12.5166 2.18096 12.4547 2.43314C11.9657 4.4235 11.4235 4.96575 9.43314 5.45466C9.18096 5.5166 9 5.74032 9 6C9 6.25968 9.18096 6.4834 9.43314 6.54534C11.4235 7.03425 11.9657 7.5765 12.4547 9.56686C12.5166 9.81904 12.7403 10 13 10C13.2597 10 13.4834 9.81904 13.5453 9.56686C14.0343 7.5765 14.5765 7.03425 16.5669 6.54534C16.819 6.4834 17 6.25968 17 6C17 5.74032 16.819 5.5166 16.5669 5.45466Z\"\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,kSACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kfACF,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 s}from"react-native-svg";var e=({children:o,size:r=24,...C})=>p.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(n,{d:"M19.1275 8.15434L19.4844 8.27073C21.2921 8.86019 21.3347 11.402 19.5479 12.0518L14.6725 13.8246C14.3945 13.9257 14.1755 14.1447 14.0744 14.4227L12.2036 19.5674C11.5647 21.3244 9.07915 21.3223 8.44327 19.5642L3.47165 5.81916C2.89165 4.21564 4.45568 2.66835 6.05286 3.26556L7.38283 3.76285",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement(n,{d:"M16.5669 5.45466C14.5765 4.96575 14.0343 4.4235 13.5453 2.43314C13.4834 2.18096 13.2597 2 13 2C12.7403 2 12.5166 2.18096 12.4547 2.43314C11.9657 4.4235 11.4235 4.96575 9.43314 5.45466C9.18096 5.5166 9 5.74032 9 6C9 6.25968 9.18096 6.4834 9.43314 6.54534C11.4235 7.03425 11.9657 7.5765 12.4547 9.56686C12.5166 9.81904 12.7403 10 13 10C13.2597 10 13.4834 9.81904 13.5453 9.56686C14.0343 7.5765 14.5765 7.03425 16.5669 6.54534C16.819 6.4834 17 6.25968 17 6C17 5.74032 16.819 5.5166 16.5669 5.45466Z",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=\"M19.1275 8.15434L19.4844 8.27073C21.2921 8.86019 21.3347 11.402 19.5479 12.0518L14.6725 13.8246C14.3945 13.9257 14.1755 14.1447 14.0744 14.4227L12.2036 19.5674C11.5647 21.3244 9.07915 21.3223 8.44327 19.5642L3.47165 5.81916C2.89165 4.21564 4.45568 2.66835 6.05286 3.26556L7.38283 3.76285\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M16.5669 5.45466C14.5765 4.96575 14.0343 4.4235 13.5453 2.43314C13.4834 2.18096 13.2597 2 13 2C12.7403 2 12.5166 2.18096 12.4547 2.43314C11.9657 4.4235 11.4235 4.96575 9.43314 5.45466C9.18096 5.5166 9 5.74032 9 6C9 6.25968 9.18096 6.4834 9.43314 6.54534C11.4235 7.03425 11.9657 7.5765 12.4547 9.56686C12.5166 9.81904 12.7403 10 13 10C13.2597 10 13.4834 9.81904 13.5453 9.56686C14.0343 7.5765 14.5765 7.03425 16.5669 6.54534C16.819 6.4834 17 6.25968 17 6C17 5.74032 16.819 5.5166 16.5669 5.45466Z\"\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,kSACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kfACF,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 a=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},i=(r,o,t,d)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of h(o))!L.call(r,s)&&s!==t&&p(r,s,{get:()=>o[s],enumerable:!(d=m(o,s))||d.enumerable});return r};var k=(r,o,t)=>(t=r!=null?a(f(r)):{},i(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>i(p({},"__esModule",{value:!0}),r);var M={};B(M,{IconDispersion:()=>l,default:()=>x});module.exports=I(M);var e=k(require("react"));var u=k(require("react")),C=require("react-native-svg"),c=({children:r,size:o=24,...t})=>u.default.createElement(C.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 n=require("react-native-svg"),l=r=>e.default.createElement(c,{...r},e.default.createElement(n.Path,{d:"M12 4V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M3 12H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M16 12H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M16 7L20 4",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M20 20L16 17",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M3 16H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M3 8H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),x=l;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=\"M12 4V20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M3 12H8\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M16 12H21\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M16 7L20 4\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M20 20L16 17\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M3 16H8\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M3 8H8\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\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,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,SACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,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 d}from"react-native-svg";var n=({children:e,size:t=24,...s})=>p.createElement(d,{...s,width:typeof t=="number"?`${t}px`:t,height:typeof t=="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none"},e);import{Path as o}from"react-native-svg";var i=e=>r.createElement(n,{...e},r.createElement(o,{d:"M12 4V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(o,{d:"M3 12H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(o,{d:"M16 12H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(o,{d:"M16 7L20 4",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(o,{d:"M20 20L16 17",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(o,{d:"M3 16H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(o,{d:"M3 8H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),L=i;export{i as IconDispersion,L 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=\"M12 4V20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M3 12H8\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M16 12H21\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M16 7L20 4\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M20 20L16 17\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M3 16H8\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M3 8H8\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\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,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,SACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,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 l=Object.create;var i=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},d=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of L(o))!f.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(p=m(o,s))||p.enumerable});return r};var k=(r,o,e)=>(e=r!=null?l(h(r)):{},d(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>d(i({},"__esModule",{value:!0}),r);var P={};B(P,{IconGovernment:()=>c,default:()=>x});module.exports=I(P);var n=k(require("react"));var u=k(require("react")),C=require("react-native-svg"),a=({children:r,size:o=24,...e})=>u.default.createElement(C.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"),c=r=>n.default.createElement(a,{...r},n.default.createElement(t.Path,{d:"M14.6699 12V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M9.33008 12V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M4 20V13C4 8.58172 7.58172 5 12 5V5C16.4183 5 20 8.58172 20 13V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M12 4.5V1H14V2H13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M3 20H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M3 12H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),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 d=\"M14.6699 12V20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.33008 12V20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4 20V13C4 8.58172 7.58172 5 12 5V5C16.4183 5 20 8.58172 20 13V20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 4.5V1H14V2H13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3 20H21\"\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 </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,iBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oEACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oBACF,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,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 i from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:o=24,...s})=>i.createElement(p,{...s,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var d=n=>r.createElement(t,{...n},r.createElement(e,{d:"M14.6699 12V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M9.33008 12V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M4 20V13C4 8.58172 7.58172 5 12 5V5C16.4183 5 20 8.58172 20 13V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M12 4.5V1H14V2H13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M3 20H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M3 12H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),f=d;export{d as IconGovernment,f 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=\"M14.6699 12V20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.33008 12V20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4 20V13C4 8.58172 7.58172 5 12 5V5C16.4183 5 20 8.58172 20 13V20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 4.5V1H14V2H13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3 20H21\"\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 </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,iBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oEACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oBACF,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,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": "round-outlined-radius-2-stroke-2",
7197
7197
  "componentName": "IconCursor3"
7198
7198
  },
7199
+ {
7200
+ "category": "AI & Magic",
7201
+ "svg": "<path d=\"M19.1275 8.15434L19.4844 8.27073C21.2921 8.86019 21.3347 11.402 19.5479 12.0518L14.6725 13.8246C14.3945 13.9257 14.1755 14.1447 14.0744 14.4227L12.2036 19.5674C11.5647 21.3244 9.07915 21.3223 8.44327 19.5642L3.47165 5.81916C2.89165 4.21564 4.45568 2.66835 6.05286 3.26556L7.38283 3.76285\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.5669 5.45466C14.5765 4.96575 14.0343 4.4235 13.5453 2.43314C13.4834 2.18096 13.2597 2 13 2C12.7403 2 12.5166 2.18096 12.4547 2.43314C11.9657 4.4235 11.4235 4.96575 9.43314 5.45466C9.18096 5.5166 9 5.74032 9 6C9 6.25968 9.18096 6.4834 9.43314 6.54534C11.4235 7.03425 11.9657 7.5765 12.4547 9.56686C12.5166 9.81904 12.7403 10 13 10C13.2597 10 13.4834 9.81904 13.5453 9.56686C14.0343 7.5765 14.5765 7.03425 16.5669 6.54534C16.819 6.4834 17 6.25968 17 6C17 5.74032 16.819 5.5166 16.5669 5.45466Z\" fill=\"currentColor\"/>",
7202
+ "iconName": "cursor-ai, agent, magic",
7203
+ "variant": {
7204
+ "join": "round",
7205
+ "filled": "off",
7206
+ "radius": "2",
7207
+ "stroke": "2"
7208
+ },
7209
+ "createdAt": "2025-09-05T13:00:48.653264+00:00",
7210
+ "packageName": "round-outlined-radius-2-stroke-2",
7211
+ "componentName": "IconCursorAi"
7212
+ },
7199
7213
  {
7200
7214
  "category": "Arrows",
7201
7215
  "svg": "<path d=\"M11 3V4.5M16.6569 5.34326L15.5962 6.40392M6.40381 15.5962L5.34315 16.6569M4.5 11H3M6.40381 6.40381L5.34315 5.34315M14.1365 20.8008L10.4008 11.0466C10.2461 10.6426 10.6426 10.2461 11.0466 10.4008L20.8008 14.1365C21.1883 14.2849 21.2368 14.8136 20.8827 15.03L17.353 17.1871C17.2853 17.2284 17.2284 17.2853 17.1871 17.353L15.03 20.8827C14.8136 21.2368 14.2849 21.1883 14.1365 20.8008Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
@@ -7672,6 +7686,20 @@
7672
7686
  "packageName": "round-outlined-radius-2-stroke-2",
7673
7687
  "componentName": "IconDishwasher"
7674
7688
  },
7689
+ {
7690
+ "category": "Edit",
7691
+ "svg": "<path d=\"M12 4V20\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M3 12H8\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M16 12H21\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M16 7L20 4\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M20 20L16 17\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M3 16H8\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M3 8H8\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
7692
+ "iconName": "dispersion, refraction",
7693
+ "variant": {
7694
+ "join": "round",
7695
+ "filled": "off",
7696
+ "radius": "2",
7697
+ "stroke": "2"
7698
+ },
7699
+ "createdAt": "2025-09-05T13:00:48.653264+00:00",
7700
+ "packageName": "round-outlined-radius-2-stroke-2",
7701
+ "componentName": "IconDispersion"
7702
+ },
7675
7703
  {
7676
7704
  "category": "Typography",
7677
7705
  "svg": "<path d=\"M3 12H21M3 5H5M11 5H13M19 5H21M3 19H5M11 19H13M19 19H21\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
@@ -10346,6 +10374,20 @@
10346
10374
  "packageName": "round-outlined-radius-2-stroke-2",
10347
10375
  "componentName": "IconGooglePlayStore"
10348
10376
  },
10377
+ {
10378
+ "category": "Building",
10379
+ "svg": "<path d=\"M14.6699 12V20\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.33008 12V20\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4 20V13C4 8.58172 7.58172 5 12 5V5C16.4183 5 20 8.58172 20 13V20\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 4.5V1H14V2H13\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3 20H21\" 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\"/>",
10380
+ "iconName": "government, bank, building",
10381
+ "variant": {
10382
+ "join": "round",
10383
+ "filled": "off",
10384
+ "radius": "2",
10385
+ "stroke": "2"
10386
+ },
10387
+ "createdAt": "2025-09-04T17:00:33.365271+00:00",
10388
+ "packageName": "round-outlined-radius-2-stroke-2",
10389
+ "componentName": "IconGovernment"
10390
+ },
10349
10391
  {
10350
10392
  "category": "Things",
10351
10393
  "svg": "<path d=\"M23 9L12 14L1 9L12 4L23 9ZM23 9V16M5 11V15.3025C5 16.0398 5.40565 16.7173 6.05556 17.0655L11.0556 19.744C11.6455 20.0601 12.3545 20.0601 12.9444 19.744L17.9444 17.0655C18.5944 16.7173 19 16.0398 19 15.3025V11\" stroke=\"currentColor\" stroke-width=\"2\" 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-2-stroke-2",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "style": "round-outlined-radius-2-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-stroke-2/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/round-outlined-radius-2-stroke-2",
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/round-outlined-radius-2-stroke-2",
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=\"M19.1275 8.15434L19.4844 8.27073C21.2921 8.86019 21.3347 11.402 19.5479 12.0518L14.6725 13.8246C14.3945 13.9257 14.1755 14.1447 14.0744 14.4227L12.2036 19.5674C11.5647 21.3244 9.07915 21.3223 8.44327 19.5642L3.47165 5.81916C2.89165 4.21564 4.45568 2.66835 6.05286 3.26556L7.38283 3.76285\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16.5669 5.45466C14.5765 4.96575 14.0343 4.4235 13.5453 2.43314C13.4834 2.18096 13.2597 2 13 2C12.7403 2 12.5166 2.18096 12.4547 2.43314C11.9657 4.4235 11.4235 4.96575 9.43314 5.45466C9.18096 5.5166 9 5.74032 9 6C9 6.25968 9.18096 6.4834 9.43314 6.54534C11.4235 7.03425 11.9657 7.5765 12.4547 9.56686C12.5166 9.81904 12.7403 10 13 10C13.2597 10 13.4834 9.81904 13.5453 9.56686C14.0343 7.5765 14.5765 7.03425 16.5669 6.54534C16.819 6.4834 17 6.25968 17 6C17 5.74032 16.819 5.5166 16.5669 5.45466Z\" 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 3V4.5M16.6569 5.34326L15.5962 6.40392M6.40381 15.5962L5.34315 16.6569M4.5 11H3M6.40381 6.40381L5.34315 5.34315M14.1365 20.8008L10.4008 11.0466C10.2461 10.6426 10.6426 10.2461 11.0466 10.4008L20.8008 14.1365C21.1883 14.2849 21.2368 14.8136 20.8827 15.03L17.353 17.1871C17.2853 17.2284 17.2284 17.2853 17.1871 17.353L15.03 20.8827C14.8136 21.2368 14.2849 21.1883 14.1365 20.8008Z\" stroke=\"currentColor\" strokeWidth=\"2\" 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 4V20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M3 12H8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M16 12H21\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M16 7L20 4\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M20 20L16 17\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M3 16H8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><Path d=\"M3 8H8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/>",
3848
+ "tags": "Path",
3849
+ "componentName": "IconDispersion",
3850
+ "iconName": "dispersion, refraction",
3851
+ "pathname": "src/IconDispersion"
3852
+ },
3839
3853
  {
3840
3854
  "svg": "<Path d=\"M3 12H21M3 5H5M11 5H13M19 5H21M3 19H5M11 19H13M19 19H21\" stroke=\"currentColor\" strokeWidth=\"2\" 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=\"M14.6699 12V20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9.33008 12V20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M4 20V13C4 8.58172 7.58172 5 12 5V5C16.4183 5 20 8.58172 20 13V20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M12 4.5V1H14V2H13\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3 20H21\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3 12H21\" stroke=\"currentColor\" strokeWidth=\"2\" 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 9L12 14L1 9L12 4L23 9ZM23 9V16M5 11V15.3025C5 16.0398 5.40565 16.7173 6.05556 17.0655L11.0556 19.744C11.6455 20.0601 12.3545 20.0601 12.9444 19.744L17.9444 17.0655C18.5944 16.7173 19 16.0398 19 15.3025V11\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>",
5178
5199
  "tags": "Path",