@central-icons-react-native/round-outlined-radius-3-stroke-1.5 1.0.1 → 1.0.3
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/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/IconVisualIntelligence/index.js +1 -1
- package/IconVisualIntelligence/index.js.map +1 -1
- package/IconVisualIntelligence/index.mjs +1 -1
- package/IconVisualIntelligence/index.mjs.map +1 -1
- package/README.md +1 -0
- package/filtered-icons.json +15 -1
- package/icons/index.d.ts +1 -0
- package/icons-index.json +5 -3
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +8 -1
|
@@ -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.75 12V20",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M9.25 12V20",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M3.75 19.5V13C3.75 8.44365 7.44365 4.75 12 4.75V4.75C16.5563 4.75 20.25 8.44365 20.25 13V19.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M12 4.5V0.75H14.25V2.25H12.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M2.75 20.25H21.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M2.75 11.75H21.25",stroke:"currentColor",strokeWidth:"1.5",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.75 12V20\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.25 12V20\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3.75 19.5V13C3.75 8.44365 7.44365 4.75 12 4.75V4.75C16.5563 4.75 20.25 8.44365 20.25 13V19.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 4.5V0.75H14.25V2.25H12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.75 20.25H21.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.75 11.75H21.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\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,eACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,cACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gGACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+BACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oBACF,OAAO,eACP,YAAY,MACZ,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.75 12V20",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M9.25 12V20",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M3.75 19.5V13C3.75 8.44365 7.44365 4.75 12 4.75V4.75C16.5563 4.75 20.25 8.44365 20.25 13V19.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M12 4.5V0.75H14.25V2.25H12.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M2.75 20.25H21.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M2.75 11.75H21.25",stroke:"currentColor",strokeWidth:"1.5",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.75 12V20\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.25 12V20\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3.75 19.5V13C3.75 8.44365 7.44365 4.75 12 4.75V4.75C16.5563 4.75 20.25 8.44365 20.25 13V19.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 4.5V0.75H14.25V2.25H12.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.75 20.25H21.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.75 11.75H21.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\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,eACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,cACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gGACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+BACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGovernment","props","React","CentralIconBase","IconGovernment_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var d=Object.create;var C=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!B.call(r,n)&&n!==e&&C(r,n,{get:()=>o[n],enumerable:!(s=f(o,n))||s.enumerable});return r};var i=(r,o,e)=>(e=r!=null?d(k(r)):{},l(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>l(C({},"__esModule",{value:!0}),r);var h={};g(h,{IconVisualIntelligence:()=>m,default:()=>P});module.exports=x(h);var t=i(require("react"));var a=i(require("react")),u=require("react-native-svg"),c=({children:r,size:o=24,...e})=>a.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 p=require("react-native-svg"),m=r=>t.default.createElement(c,{...r},t.default.createElement(p.Path,{d:"M16.1207 10.4727C13.5264 7.5091 10.4739 7.5091 7.87955 10.4727C7.11567 11.3453 7.11567 12.6547 7.87955 13.5273C10.4739 16.4909 13.5264 16.4909 16.1207 13.5273C16.8846 12.6547 16.8846 11.3453 16.1207 10.4727Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M3.93318 7.46871C1.95079 10.9934 2.45949 15.541 5.45926 18.5407C8.45904 21.5405 13.0066 22.0492 16.5313 20.0668M7.46871 3.93318C10.9934 1.95079 15.541 2.45949 18.5407 5.45926C21.5405 8.45904 22.0492 13.0066 20.0668 16.5313",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M12 10.75C12.6904 10.75 13.25 11.3096 13.25 12C13.25 12.6904 12.6904 13.25 12 13.25C11.3096 13.25 10.75 12.6904 10.75 12C10.75 11.3096 11.3096 10.75 12 10.75Z",fill:"currentColor"})),P=m;0&&(module.exports={IconVisualIntelligence});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconVisualIntelligence/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 IconVisualIntelligence: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.1207 10.4727C13.5264 7.5091 10.4739 7.5091 7.87955 10.4727C7.11567 11.3453 7.11567 12.6547 7.87955 13.5273C10.4739 16.4909 13.5264 16.4909 16.1207 13.5273C16.8846 12.6547 16.8846 11.3453 16.1207 10.4727Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3.93318 7.46871C1.95079 10.9934 2.45949 15.541 5.45926 18.5407C8.45904 21.5405 13.0066 22.0492 16.5313 20.0668M7.46871 3.93318C10.9934 1.95079 15.541 2.45949 18.5407 5.45926C21.5405 8.45904 22.0492 13.0066 20.0668 16.5313\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconVisualIntelligence/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 IconVisualIntelligence: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.1207 10.4727C13.5264 7.5091 10.4739 7.5091 7.87955 10.4727C7.11567 11.3453 7.11567 12.6547 7.87955 13.5273C10.4739 16.4909 13.5264 16.4909 16.1207 13.5273C16.8846 12.6547 16.8846 11.3453 16.1207 10.4727Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3.93318 7.46871C1.95079 10.9934 2.45949 15.541 5.45926 18.5407C8.45904 21.5405 13.0066 22.0492 16.5313 20.0668M7.46871 3.93318C10.9934 1.95079 15.541 2.45949 18.5407 5.45926C21.5405 8.45904 22.0492 13.0066 20.0668 16.5313\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 10.75C12.6904 10.75 13.25 11.3096 13.25 12C13.25 12.6904 12.6904 13.25 12 13.25C11.3096 13.25 10.75 12.6904 10.75 12C10.75 11.3096 11.3096 10.75 12 10.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVisualIntelligence;\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,4BAAAE,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,EAAoDC,GAE7D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kNACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iOACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iKACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconVisualIntelligence_exports","__export","IconVisualIntelligence","IconVisualIntelligence_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVisualIntelligence","props","React","CentralIconBase","IconVisualIntelligence_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import
|
|
1
|
+
import o from"react";import p from"react";import{Svg as s}from"react-native-svg";var t=({children:e,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"},e);import{Path as n}from"react-native-svg";var l=e=>o.createElement(t,{...e},o.createElement(n,{d:"M16.1207 10.4727C13.5264 7.5091 10.4739 7.5091 7.87955 10.4727C7.11567 11.3453 7.11567 12.6547 7.87955 13.5273C10.4739 16.4909 13.5264 16.4909 16.1207 13.5273C16.8846 12.6547 16.8846 11.3453 16.1207 10.4727Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M3.93318 7.46871C1.95079 10.9934 2.45949 15.541 5.45926 18.5407C8.45904 21.5405 13.0066 22.0492 16.5313 20.0668M7.46871 3.93318C10.9934 1.95079 15.541 2.45949 18.5407 5.45926C21.5405 8.45904 22.0492 13.0066 20.0668 16.5313",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M12 10.75C12.6904 10.75 13.25 11.3096 13.25 12C13.25 12.6904 12.6904 13.25 12 13.25C11.3096 13.25 10.75 12.6904 10.75 12C10.75 11.3096 11.3096 10.75 12 10.75Z",fill:"currentColor"})),B=l;export{l as IconVisualIntelligence,B as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconVisualIntelligence/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 IconVisualIntelligence: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.1207 10.4727C13.5264 7.5091 10.4739 7.5091 7.87955 10.4727C7.11567 11.3453 7.11567 12.6547 7.87955 13.5273C10.4739 16.4909 13.5264 16.4909 16.1207 13.5273C16.8846 12.6547 16.8846 11.3453 16.1207 10.4727Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3.93318 7.46871C1.95079 10.9934 2.45949 15.541 5.45926 18.5407C8.45904 21.5405 13.0066 22.0492 16.5313 20.0668M7.46871 3.93318C10.9934 1.95079 15.541 2.45949 18.5407 5.45926C21.5405 8.45904 22.0492 13.0066 20.0668 16.5313\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconVisualIntelligence/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 IconVisualIntelligence: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.1207 10.4727C13.5264 7.5091 10.4739 7.5091 7.87955 10.4727C7.11567 11.3453 7.11567 12.6547 7.87955 13.5273C10.4739 16.4909 13.5264 16.4909 16.1207 13.5273C16.8846 12.6547 16.8846 11.3453 16.1207 10.4727Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3.93318 7.46871C1.95079 10.9934 2.45949 15.541 5.45926 18.5407C8.45904 21.5405 13.0066 22.0492 16.5313 20.0668M7.46871 3.93318C10.9934 1.95079 15.541 2.45949 18.5407 5.45926C21.5405 8.45904 22.0492 13.0066 20.0668 16.5313\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 10.75C12.6904 10.75 13.25 11.3096 13.25 12C13.25 12.6904 12.6904 13.25 12 13.25C11.3096 13.25 10.75 12.6904 10.75 12C10.75 11.3096 11.3096 10.75 12 10.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVisualIntelligence;\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,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kNACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iOACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iKACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVisualIntelligence","props","React","CentralIconBase","IconVisualIntelligence_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -10346,6 +10346,20 @@
|
|
|
10346
10346
|
"packageName": "round-outlined-radius-3-stroke-1.5",
|
|
10347
10347
|
"componentName": "IconGooglePlayStore"
|
|
10348
10348
|
},
|
|
10349
|
+
{
|
|
10350
|
+
"category": "Building",
|
|
10351
|
+
"svg": "<path d=\"M14.75 12V20\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.25 12V20\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 19.5V13C3.75 8.44365 7.44365 4.75 12 4.75V4.75C16.5563 4.75 20.25 8.44365 20.25 13V19.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 4.5V0.75H14.25V2.25H12.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2.75 20.25H21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2.75 11.75H21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
10352
|
+
"iconName": "government, bank, building",
|
|
10353
|
+
"variant": {
|
|
10354
|
+
"join": "round",
|
|
10355
|
+
"filled": "off",
|
|
10356
|
+
"radius": "3",
|
|
10357
|
+
"stroke": "1.5"
|
|
10358
|
+
},
|
|
10359
|
+
"createdAt": "2025-09-04T17:00:33.365271+00:00",
|
|
10360
|
+
"packageName": "round-outlined-radius-3-stroke-1.5",
|
|
10361
|
+
"componentName": "IconGovernment"
|
|
10362
|
+
},
|
|
10349
10363
|
{
|
|
10350
10364
|
"category": "Things",
|
|
10351
10365
|
"svg": "<path d=\"M23.25 8.99626L12 14.2425L0.75 8.99626L12 3.75L23.25 8.99626ZM23.25 8.99626V15.2418M4.75002 10.9636V14.8742C4.75002 15.9594 5.33687 16.9598 6.28438 17.4899L10.5344 19.8679C11.4449 20.3774 12.5551 20.3774 13.4656 19.8679L17.7157 17.4899C18.6632 16.9598 19.25 15.9594 19.25 14.8742V10.9636\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -20442,7 +20456,7 @@
|
|
|
20442
20456
|
},
|
|
20443
20457
|
{
|
|
20444
20458
|
"category": "AI & Magic",
|
|
20445
|
-
"svg": "<path d=\"M16.1207 10.4727C13.5264 7.5091 10.4739 7.5091 7.87955 10.4727C7.11567 11.3453 7.11567 12.6547 7.87955 13.5273C10.4739 16.4909 13.5264 16.4909 16.1207 13.5273C16.8846 12.6547 16.8846 11.3453 16.1207 10.4727Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.93318 7.46871C1.95079 10.9934 2.45949 15.541 5.45926 18.5407C8.45904 21.5405 13.0066 22.0492 16.5313 20.0668M7.46871 3.93318C10.9934 1.95079 15.541 2.45949 18.5407 5.45926C21.5405 8.45904 22.0492 13.0066 20.0668 16.5313\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"
|
|
20459
|
+
"svg": "<path d=\"M16.1207 10.4727C13.5264 7.5091 10.4739 7.5091 7.87955 10.4727C7.11567 11.3453 7.11567 12.6547 7.87955 13.5273C10.4739 16.4909 13.5264 16.4909 16.1207 13.5273C16.8846 12.6547 16.8846 11.3453 16.1207 10.4727Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.93318 7.46871C1.95079 10.9934 2.45949 15.541 5.45926 18.5407C8.45904 21.5405 13.0066 22.0492 16.5313 20.0668M7.46871 3.93318C10.9934 1.95079 15.541 2.45949 18.5407 5.45926C21.5405 8.45904 22.0492 13.0066 20.0668 16.5313\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 10.75C12.6904 10.75 13.25 11.3096 13.25 12C13.25 12.6904 12.6904 13.25 12 13.25C11.3096 13.25 10.75 12.6904 10.75 12C10.75 11.3096 11.3096 10.75 12 10.75Z\" fill=\"currentColor\"/>",
|
|
20446
20460
|
"iconName": "visual-intelligence",
|
|
20447
20461
|
"variant": {
|
|
20448
20462
|
"join": "round",
|
package/icons/index.d.ts
CHANGED
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-3-stroke-1.5",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"style": "round-outlined-radius-3-stroke-1.5",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-3-stroke-1.5/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1520,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 32,
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
]
|
|
201
201
|
},
|
|
202
202
|
"Building": {
|
|
203
|
-
"count":
|
|
203
|
+
"count": 22,
|
|
204
204
|
"icons": [
|
|
205
205
|
"IconBank",
|
|
206
206
|
"IconBlock",
|
|
@@ -208,6 +208,7 @@
|
|
|
208
208
|
"IconCourt",
|
|
209
209
|
"IconDoor",
|
|
210
210
|
"IconGarage",
|
|
211
|
+
"IconGovernment",
|
|
211
212
|
"IconHome",
|
|
212
213
|
"IconHomeCircle",
|
|
213
214
|
"IconHomeDoor",
|
|
@@ -2448,6 +2449,7 @@
|
|
|
2448
2449
|
"IconGolfBall": "golf-ball",
|
|
2449
2450
|
"IconGoogle": "google",
|
|
2450
2451
|
"IconGooglePlayStore": "google-play-store",
|
|
2452
|
+
"IconGovernment": "government, bank, building",
|
|
2451
2453
|
"IconGraduateCap": "graduate-cap, study, education, academic, student",
|
|
2452
2454
|
"IconGreenPower": "green-power, green-energy",
|
|
2453
2455
|
"IconGrok": "grok",
|
package/license-check.js
CHANGED
package/package.json
CHANGED
package/tsx-icons.json
CHANGED
|
@@ -5173,6 +5173,13 @@
|
|
|
5173
5173
|
"iconName": "google-play-store",
|
|
5174
5174
|
"pathname": "src/IconGooglePlayStore"
|
|
5175
5175
|
},
|
|
5176
|
+
{
|
|
5177
|
+
"svg": "<Path d=\"M14.75 12V20\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9.25 12V20\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.75 19.5V13C3.75 8.44365 7.44365 4.75 12 4.75V4.75C16.5563 4.75 20.25 8.44365 20.25 13V19.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M12 4.5V0.75H14.25V2.25H12.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M2.75 20.25H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M2.75 11.75H21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>",
|
|
5178
|
+
"tags": "Path",
|
|
5179
|
+
"componentName": "IconGovernment",
|
|
5180
|
+
"iconName": "government, bank, building",
|
|
5181
|
+
"pathname": "src/IconGovernment"
|
|
5182
|
+
},
|
|
5176
5183
|
{
|
|
5177
5184
|
"svg": "<Path d=\"M23.25 8.99626L12 14.2425L0.75 8.99626L12 3.75L23.25 8.99626ZM23.25 8.99626V15.2418M4.75002 10.9636V14.8742C4.75002 15.9594 5.33687 16.9598 6.28438 17.4899L10.5344 19.8679C11.4449 20.3774 12.5551 20.3774 13.4656 19.8679L17.7157 17.4899C18.6632 16.9598 19.25 15.9594 19.25 14.8742V10.9636\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/>",
|
|
5178
5185
|
"tags": "Path",
|
|
@@ -10221,7 +10228,7 @@
|
|
|
10221
10228
|
"pathname": "src/IconVisionProApp"
|
|
10222
10229
|
},
|
|
10223
10230
|
{
|
|
10224
|
-
"svg": "<Path d=\"M16.1207 10.4727C13.5264 7.5091 10.4739 7.5091 7.87955 10.4727C7.11567 11.3453 7.11567 12.6547 7.87955 13.5273C10.4739 16.4909 13.5264 16.4909 16.1207 13.5273C16.8846 12.6547 16.8846 11.3453 16.1207 10.4727Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.93318 7.46871C1.95079 10.9934 2.45949 15.541 5.45926 18.5407C8.45904 21.5405 13.0066 22.0492 16.5313 20.0668M7.46871 3.93318C10.9934 1.95079 15.541 2.45949 18.5407 5.45926C21.5405 8.45904 22.0492 13.0066 20.0668 16.5313\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"
|
|
10231
|
+
"svg": "<Path d=\"M16.1207 10.4727C13.5264 7.5091 10.4739 7.5091 7.87955 10.4727C7.11567 11.3453 7.11567 12.6547 7.87955 13.5273C10.4739 16.4909 13.5264 16.4909 16.1207 13.5273C16.8846 12.6547 16.8846 11.3453 16.1207 10.4727Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.93318 7.46871C1.95079 10.9934 2.45949 15.541 5.45926 18.5407C8.45904 21.5405 13.0066 22.0492 16.5313 20.0668M7.46871 3.93318C10.9934 1.95079 15.541 2.45949 18.5407 5.45926C21.5405 8.45904 22.0492 13.0066 20.0668 16.5313\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M12 10.75C12.6904 10.75 13.25 11.3096 13.25 12C13.25 12.6904 12.6904 13.25 12 13.25C11.3096 13.25 10.75 12.6904 10.75 12C10.75 11.3096 11.3096 10.75 12 10.75Z\" fill=\"currentColor\"/>",
|
|
10225
10232
|
"tags": "Path",
|
|
10226
10233
|
"componentName": "IconVisualIntelligence",
|
|
10227
10234
|
"iconName": "visual-intelligence",
|