@central-icons-react-native/round-outlined-radius-2-stroke-2 1.1.187 → 1.1.189
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/{IconPeople21 → IconBridge}/index.d.ts +2 -2
- package/IconBridge/index.js +2 -0
- package/IconBridge/index.js.map +1 -0
- package/IconBridge/index.mjs +2 -0
- package/IconBridge/index.mjs.map +1 -0
- package/IconGoldenGateBridge/index.d.ts +4 -0
- package/IconGoldenGateBridge/index.js +2 -0
- package/IconGoldenGateBridge/index.js.map +1 -0
- package/IconGoldenGateBridge/index.mjs +2 -0
- package/IconGoldenGateBridge/index.mjs.map +1 -0
- package/IconPeopleGroup2/index.d.ts +4 -0
- package/IconPeopleGroup2/index.js +2 -0
- package/IconPeopleGroup2/index.js.map +1 -0
- package/{IconPeople21 → IconPeopleGroup2}/index.mjs +1 -1
- package/IconPeopleGroup2/index.mjs.map +1 -0
- package/IconTestTube2/index.d.ts +4 -0
- package/IconTestTube2/index.js +2 -0
- package/IconTestTube2/index.js.map +1 -0
- package/IconTestTube2/index.mjs +2 -0
- package/IconTestTube2/index.mjs.map +1 -0
- package/README.md +4 -1
- package/filtered-icons.json +57 -15
- package/icons/index.d.ts +4 -1
- package/icons-index.json +14 -8
- package/index.d.ts +4 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +29 -8
- package/IconPeople21/index.js +0 -2
- package/IconPeople21/index.js.map +0 -1
- package/IconPeople21/index.mjs.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
2
|
import { type CentralIconBaseProps } from "../CentralIconBase";
|
|
3
|
-
export declare const
|
|
4
|
-
export default
|
|
3
|
+
export declare const IconBridge: FC<CentralIconBaseProps>;
|
|
4
|
+
export default IconBridge;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var s=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)s(r,t,{get:o[t],enumerable:!0})},c=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!d.call(r,e)&&e!==t&&s(r,e,{get:()=>o[e],enumerable:!(C=x(o,e))||C.enumerable});return r};var l=(r,o,t)=>(t=r!=null?u(I(r)):{},c(o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),h=r=>c(s({},"__esModule",{value:!0}),r);var k={};g(k,{IconBridge:()=>f,default:()=>P});module.exports=h(k);var n=l(require("react"));var a=l(require("react")),m=require("react-native-svg"),i=({children:r,size:o=24,...t})=>a.default.createElement(m.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"),f=r=>n.default.createElement(i,{...r},n.default.createElement(p.Circle,{cx:"5",cy:"16",r:"2.5",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(p.Circle,{cx:"19",cy:"16",r:"2.5",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(p.Path,{d:"M5 13V12.5C5 8.63401 8.13401 5.5 12 5.5C15.866 5.5 19 8.63401 19 12.5V13",stroke:"currentColor",strokeWidth:"2"})),P=f;0&&(module.exports={IconBridge});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBridge/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconBridge: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"5\" cy=\"16\" r=\"2.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Circle cx=\"19\" cy=\"16\" r=\"2.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M5 13V12.5C5 8.63401 8.13401 5.5 12 5.5C15.866 5.5 19 8.63401 19 12.5V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBridge;\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,gBAAAE,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,EAA6B,4BAEhBC,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,IAAI,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,YAAY,IAAI,EACrE,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,YAAY,IAAI,EACtE,EAAAA,QAAA,cAAC,QACC,EAAE,2EACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconBridge_exports","__export","IconBridge","IconBridge_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBridge","props","React","CentralIconBase","IconBridge_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import s from"react";import{Svg as C}from"react-native-svg";var e=({children:t,size:r=24,...p})=>s.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Circle as n,Path as c}from"react-native-svg";var l=t=>o.createElement(e,{...t},o.createElement(n,{cx:"5",cy:"16",r:"2.5",stroke:"currentColor",strokeWidth:"2"}),o.createElement(n,{cx:"19",cy:"16",r:"2.5",stroke:"currentColor",strokeWidth:"2"}),o.createElement(c,{d:"M5 13V12.5C5 8.63401 8.13401 5.5 12 5.5C15.866 5.5 19 8.63401 19 12.5V13",stroke:"currentColor",strokeWidth:"2"})),g=l;export{l as IconBridge,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBridge/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconBridge: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"5\" cy=\"16\" r=\"2.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Circle cx=\"19\" cy=\"16\" r=\"2.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n <Path\n d=\"M5 13V12.5C5 8.63401 8.13401 5.5 12 5.5C15.866 5.5 19 8.63401 19 12.5V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBridge;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,IAAI,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,YAAY,IAAI,EACrEI,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,YAAY,IAAI,EACtEI,EAAA,cAACH,EAAA,CACC,EAAE,2EACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconBridge","props","React","CentralIconBase","IconBridge_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,d)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of h(o))!B.call(r,s)&&s!==e&&p(r,s,{get:()=>o[s],enumerable:!(d=m(o,s))||d.enumerable});return r};var i=(r,o,e)=>(e=r!=null?c(f(r)):{},C(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),L=r=>C(p({},"__esModule",{value:!0}),r);var x={};I(x,{IconGoldenGateBridge:()=>a,default:()=>g});module.exports=L(x);var t=i(require("react"));var k=i(require("react")),u=require("react-native-svg"),l=({children:r,size:o=24,...e})=>k.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 n=require("react-native-svg"),a=r=>t.default.createElement(l,{...r},t.default.createElement(n.Path,{d:"M2 16L22 16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M18 5C18 7.76142 15.3137 10 12 10C8.68629 10 6 7.76142 6 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M18 4.8999C18 6.87457 19.7178 8.52172 22 8.8999",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M6 4.8999C6 6.87457 4.28224 8.52172 2 8.8999",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M6 6V19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M18 6V19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M12 10V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),g=a;0&&(module.exports={IconGoldenGateBridge});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGoldenGateBridge/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 IconGoldenGateBridge: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M2 16L22 16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M18 5C18 7.76142 15.3137 10 12 10C8.68629 10 6 7.76142 6 5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M18 4.8999C18 6.87457 19.7178 8.52172 22 8.8999\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M6 4.8999C6 6.87457 4.28224 8.52172 2 8.8999\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M6 6V19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M18 6V19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M12 10V16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoldenGateBridge;\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,0BAAAE,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,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6DACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kDACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+CACF,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,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconGoldenGateBridge_exports","__export","IconGoldenGateBridge","IconGoldenGateBridge_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGoldenGateBridge","props","React","CentralIconBase","IconGoldenGateBridge_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:t,size:e=24,...s})=>p.createElement(d,{...s,width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},t);import{Path as o}from"react-native-svg";var C=t=>r.createElement(n,{...t},r.createElement(o,{d:"M2 16L22 16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(o,{d:"M18 5C18 7.76142 15.3137 10 12 10C8.68629 10 6 7.76142 6 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(o,{d:"M18 4.8999C18 6.87457 19.7178 8.52172 22 8.8999",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(o,{d:"M6 4.8999C6 6.87457 4.28224 8.52172 2 8.8999",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(o,{d:"M6 6V19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(o,{d:"M18 6V19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(o,{d:"M12 10V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),B=C;export{C as IconGoldenGateBridge,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconGoldenGateBridge/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 IconGoldenGateBridge: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M2 16L22 16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M18 5C18 7.76142 15.3137 10 12 10C8.68629 10 6 7.76142 6 5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M18 4.8999C18 6.87457 19.7178 8.52172 22 8.8999\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M6 4.8999C6 6.87457 4.28224 8.52172 2 8.8999\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M6 6V19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M18 6V19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M12 10V16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoldenGateBridge;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6DACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kDACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+CACF,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,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGoldenGateBridge","props","React","CentralIconBase","IconGoldenGateBridge_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var m=Object.create;var s=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of f(o))!B.call(r,n)&&n!==e&&s(r,n,{get:()=>o[n],enumerable:!(C=k(o,n))||C.enumerable});return r};var l=(r,o,e)=>(e=r!=null?m(h(r)):{},a(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>a(s({},"__esModule",{value:!0}),r);var g={};I(g,{IconPeopleGroup2:()=>i,default:()=>x});module.exports=P(g);var t=l(require("react"));var u=l(require("react")),c=require("react-native-svg"),d=({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 p=require("react-native-svg"),i=r=>t.default.createElement(d,{...r},t.default.createElement(p.Path,{d:"M12.5 8.5C12.5 10.433 10.933 12 9 12C7.067 12 5.5 10.433 5.5 8.5C5.5 6.567 7.067 5 9 5C10.933 5 12.5 6.567 12.5 8.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(p.Path,{d:"M15.2539 5.00928C17.068 5.13971 18.4993 6.65279 18.4993 8.50016C18.4993 10.3475 17.068 11.8606 15.2539 11.991",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(p.Path,{d:"M3 19V17.765C3 16.0999 4.34315 14.75 6 14.75H12C13.6569 14.75 15 16.0999 15 17.765V19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(p.Path,{d:"M20.9985 19V17.765C20.9985 16.0999 19.6553 14.75 17.9985 14.75H17.8984",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),x=i;0&&(module.exports={IconPeopleGroup2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPeopleGroup2/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 IconPeopleGroup2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.5 8.5C12.5 10.433 10.933 12 9 12C7.067 12 5.5 10.433 5.5 8.5C5.5 6.567 7.067 5 9 5C10.933 5 12.5 6.567 12.5 8.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M15.2539 5.00928C17.068 5.13971 18.4993 6.65279 18.4993 8.50016C18.4993 10.3475 17.068 11.8606 15.2539 11.991\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M3 19V17.765C3 16.0999 4.34315 14.75 6 14.75H12C13.6569 14.75 15 16.0999 15 17.765V19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M20.9985 19V17.765C20.9985 16.0999 19.6553 14.75 17.9985 14.75H17.8984\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleGroup2;\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,sBAAAE,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,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,uHACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gHACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wFACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yEACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconPeopleGroup2_exports","__export","IconPeopleGroup2","IconPeopleGroup2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPeopleGroup2","props","React","CentralIconBase","IconPeopleGroup2_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import s from"react";import{Svg as C}from"react-native-svg";var n=({children:t,size:r=24,...p})=>s.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as e}from"react-native-svg";var a=t=>o.createElement(n,{...t},o.createElement(e,{d:"M12.5 8.5C12.5 10.433 10.933 12 9 12C7.067 12 5.5 10.433 5.5 8.5C5.5 6.567 7.067 5 9 5C10.933 5 12.5 6.567 12.5 8.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(e,{d:"M15.2539 5.00928C17.068 5.13971 18.4993 6.65279 18.4993 8.50016C18.4993 10.3475 17.068 11.8606 15.2539 11.991",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(e,{d:"M3 19V17.765C3 16.0999 4.34315 14.75 6 14.75H12C13.6569 14.75 15 16.0999 15 17.765V19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(e,{d:"M20.9985 19V17.765C20.9985 16.0999 19.6553 14.75 17.9985 14.75H17.8984",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),B=a;export{a as
|
|
1
|
+
import o from"react";import s from"react";import{Svg as C}from"react-native-svg";var n=({children:t,size:r=24,...p})=>s.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as e}from"react-native-svg";var a=t=>o.createElement(n,{...t},o.createElement(e,{d:"M12.5 8.5C12.5 10.433 10.933 12 9 12C7.067 12 5.5 10.433 5.5 8.5C5.5 6.567 7.067 5 9 5C10.933 5 12.5 6.567 12.5 8.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(e,{d:"M15.2539 5.00928C17.068 5.13971 18.4993 6.65279 18.4993 8.50016C18.4993 10.3475 17.068 11.8606 15.2539 11.991",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(e,{d:"M3 19V17.765C3 16.0999 4.34315 14.75 6 14.75H12C13.6569 14.75 15 16.0999 15 17.765V19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(e,{d:"M20.9985 19V17.765C20.9985 16.0999 19.6553 14.75 17.9985 14.75H17.8984",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),B=a;export{a as IconPeopleGroup2,B as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPeopleGroup2/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 IconPeopleGroup2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.5 8.5C12.5 10.433 10.933 12 9 12C7.067 12 5.5 10.433 5.5 8.5C5.5 6.567 7.067 5 9 5C10.933 5 12.5 6.567 12.5 8.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M15.2539 5.00928C17.068 5.13971 18.4993 6.65279 18.4993 8.50016C18.4993 10.3475 17.068 11.8606 15.2539 11.991\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M3 19V17.765C3 16.0999 4.34315 14.75 6 14.75H12C13.6569 14.75 15 16.0999 15 17.765V19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M20.9985 19V17.765C20.9985 16.0999 19.6553 14.75 17.9985 14.75H17.8984\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleGroup2;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,uHACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gHACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wFACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yEACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPeopleGroup2","props","React","CentralIconBase","IconPeopleGroup2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var i=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,h=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 m(o))!h.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(p=L(o,s))||p.enumerable});return r};var u=(r,o,e)=>(e=r!=null?l(f(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,{IconTestTube2:()=>c,default:()=>x});module.exports=I(P);var n=u(require("react"));var k=u(require("react")),C=require("react-native-svg"),a=({children:r,size:o=24,...e})=>k.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:"M19.0003 9L9.2503 18.75C8.14573 19.8546 6.35487 19.8546 5.2503 18.75C4.14573 17.6454 4.14573 15.8546 5.2503 14.75L15.0003 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M13.75 3.25L20.75 10.25",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M8.5 11.75H16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M9 4H6C4.89543 4 4 4.89543 4 6V10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M14 20L18 20C19.1046 20 20 19.1046 20 18L20 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),x=c;0&&(module.exports={IconTestTube2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconTestTube2/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 IconTestTube2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.0003 9L9.2503 18.75C8.14573 19.8546 6.35487 19.8546 5.2503 18.75C4.14573 17.6454 4.14573 15.8546 5.2503 14.75L15.0003 5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13.75 3.25L20.75 10.25\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.5 11.75H16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 4H6C4.89543 4 4 4.89543 4 6V10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14 20L18 20C19.1046 20 20 19.1046 20 18L20 15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTestTube2;\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,mBAAAE,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,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,8HACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iDACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconTestTube2_exports","__export","IconTestTube2","IconTestTube2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconTestTube2","props","React","CentralIconBase","IconTestTube2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import i from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...s})=>i.createElement(p,{...s,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var d=n=>o.createElement(t,{...n},o.createElement(e,{d:"M19.0003 9L9.2503 18.75C8.14573 19.8546 6.35487 19.8546 5.2503 18.75C4.14573 17.6454 4.14573 15.8546 5.2503 14.75L15.0003 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M13.75 3.25L20.75 10.25",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M8.5 11.75H16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M9 4H6C4.89543 4 4 4.89543 4 6V10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M14 20L18 20C19.1046 20 20 19.1046 20 18L20 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),h=d;export{d as IconTestTube2,h as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconTestTube2/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 IconTestTube2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.0003 9L9.2503 18.75C8.14573 19.8546 6.35487 19.8546 5.2503 18.75C4.14573 17.6454 4.14573 15.8546 5.2503 14.75L15.0003 5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13.75 3.25L20.75 10.25\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.5 11.75H16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 4H6C4.89543 4 4 4.89543 4 6V10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14 20L18 20C19.1046 20 20 19.1046 20 18L20 15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTestTube2;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,8HACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iDACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconTestTube2","props","React","CentralIconBase","IconTestTube2_default"]}
|
package/README.md
CHANGED
|
@@ -399,6 +399,7 @@ Below is a complete list of available icons:
|
|
|
399
399
|
- IconCourt
|
|
400
400
|
- IconDoor
|
|
401
401
|
- IconGarage
|
|
402
|
+
- IconGoldenGateBridge
|
|
402
403
|
- IconGovernment
|
|
403
404
|
- IconHome
|
|
404
405
|
- IconHomeCircle
|
|
@@ -454,6 +455,7 @@ Below is a complete list of available icons:
|
|
|
454
455
|
- IconBrackets2
|
|
455
456
|
- IconBranch
|
|
456
457
|
- IconBranchSimple
|
|
458
|
+
- IconBridge
|
|
457
459
|
- IconBug
|
|
458
460
|
- IconBugFace
|
|
459
461
|
- IconChanges
|
|
@@ -1357,7 +1359,6 @@ Below is a complete list of available icons:
|
|
|
1357
1359
|
- IconHead
|
|
1358
1360
|
- IconPeople
|
|
1359
1361
|
- IconPeople2
|
|
1360
|
-
- IconPeople21
|
|
1361
1362
|
- IconPeopleAdd
|
|
1362
1363
|
- IconPeopleAdd2
|
|
1363
1364
|
- IconPeopleAdded
|
|
@@ -1365,6 +1366,7 @@ Below is a complete list of available icons:
|
|
|
1365
1366
|
- IconPeopleCopy
|
|
1366
1367
|
- IconPeopleEdit
|
|
1367
1368
|
- IconPeopleGear
|
|
1369
|
+
- IconPeopleGroup2
|
|
1368
1370
|
- IconPeopleIdCard
|
|
1369
1371
|
- IconPeopleLike
|
|
1370
1372
|
- IconPeopleNoise
|
|
@@ -1980,6 +1982,7 @@ Below is a complete list of available icons:
|
|
|
1980
1982
|
- IconTeddyBear
|
|
1981
1983
|
- IconTelescope
|
|
1982
1984
|
- IconTestTube
|
|
1985
|
+
- IconTestTube2
|
|
1983
1986
|
- IconThinkingBubble
|
|
1984
1987
|
- IconThinkingBubble1
|
|
1985
1988
|
- IconThread
|
package/filtered-icons.json
CHANGED
|
@@ -4102,6 +4102,20 @@
|
|
|
4102
4102
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
4103
4103
|
"componentName": "IconBreakfast"
|
|
4104
4104
|
},
|
|
4105
|
+
{
|
|
4106
|
+
"category": "Code",
|
|
4107
|
+
"svg": "<circle cx=\"5\" cy=\"16\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"2\"/><circle cx=\"19\" cy=\"16\" r=\"2.5\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M5 13V12.5C5 8.63401 8.13401 5.5 12 5.5C15.866 5.5 19 8.63401 19 12.5V13\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
4108
|
+
"iconName": "bridge, connection",
|
|
4109
|
+
"variant": {
|
|
4110
|
+
"join": "round",
|
|
4111
|
+
"filled": "off",
|
|
4112
|
+
"radius": "2",
|
|
4113
|
+
"stroke": "2"
|
|
4114
|
+
},
|
|
4115
|
+
"createdAt": "2026-04-15T06:01:58.081889+00:00",
|
|
4116
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
4117
|
+
"componentName": "IconBridge"
|
|
4118
|
+
},
|
|
4105
4119
|
{
|
|
4106
4120
|
"category": "Photography & Video",
|
|
4107
4121
|
"svg": "<circle cx=\"12\" cy=\"12\" r=\"5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 2V3M12 21V22M4.92895 4.92893L5.63606 5.63604M18.364 18.364L19.0711 19.0711M19.0711 4.92896L18.364 5.63606M5.63608 18.364L4.92898 19.0711M2 12H3M21 12H22\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -12726,6 +12740,20 @@
|
|
|
12726
12740
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
12727
12741
|
"componentName": "IconGold"
|
|
12728
12742
|
},
|
|
12743
|
+
{
|
|
12744
|
+
"category": "Building",
|
|
12745
|
+
"svg": "<path d=\"M2 16L22 16\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M18 5C18 7.76142 15.3137 10 12 10C8.68629 10 6 7.76142 6 5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M18 4.8999C18 6.87457 19.7178 8.52172 22 8.8999\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M6 4.8999C6 6.87457 4.28224 8.52172 2 8.8999\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M6 6V19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M18 6V19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M12 10V16\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
|
12746
|
+
"iconName": "golden-gate-bridge, silicon-valley, sf",
|
|
12747
|
+
"variant": {
|
|
12748
|
+
"join": "round",
|
|
12749
|
+
"filled": "off",
|
|
12750
|
+
"radius": "2",
|
|
12751
|
+
"stroke": "2"
|
|
12752
|
+
},
|
|
12753
|
+
"createdAt": "2026-04-15T06:01:58.081889+00:00",
|
|
12754
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
12755
|
+
"componentName": "IconGoldenGateBridge"
|
|
12756
|
+
},
|
|
12729
12757
|
{
|
|
12730
12758
|
"category": "Things",
|
|
12731
12759
|
"svg": "<circle cx=\"12\" cy=\"10\" r=\"7.5\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M8 16.5V22L12 21L16 22V16.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.0391 6C12.5913 6 13.0391 6.44772 13.0391 7V13.0352C13.0391 13.568 12.6071 14 12.0742 14C11.5414 14 11.1094 13.568 11.1094 13.0352V7.84127C11.1094 7.82106 11.093 7.80469 11.0728 7.80469C11.0661 7.80469 11.0595 7.80655 11.0537 7.81006L10.361 8.23357C9.88471 8.52474 9.27344 8.18199 9.27344 7.62378C9.27344 7.37676 9.40099 7.14725 9.61076 7.01682L10.7611 6.30155C11.0781 6.10446 11.4439 6 11.8172 6H12.0391Z\" fill=\"currentColor\"/>",
|
|
@@ -18287,7 +18315,7 @@
|
|
|
18287
18315
|
{
|
|
18288
18316
|
"category": "People",
|
|
18289
18317
|
"svg": "<path d=\"M4 20V19C4 16.7909 5.79086 15 8 15H16C18.2091 15 20 16.7909 20 19V20\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M16.5 7.5C16.5 9.98528 14.4853 12 12 12C9.51472 12 7.5 9.98528 7.5 7.5C7.5 5.01472 9.51472 3 12 3C14.4853 3 16.5 5.01472 16.5 7.5Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
|
18290
|
-
"iconName": "people-2",
|
|
18318
|
+
"iconName": "people-2, user, person, member",
|
|
18291
18319
|
"variant": {
|
|
18292
18320
|
"join": "round",
|
|
18293
18321
|
"filled": "off",
|
|
@@ -18298,20 +18326,6 @@
|
|
|
18298
18326
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
18299
18327
|
"componentName": "IconPeople2"
|
|
18300
18328
|
},
|
|
18301
|
-
{
|
|
18302
|
-
"category": "People",
|
|
18303
|
-
"svg": "<path d=\"M12.5 8.5C12.5 10.433 10.933 12 9 12C7.067 12 5.5 10.433 5.5 8.5C5.5 6.567 7.067 5 9 5C10.933 5 12.5 6.567 12.5 8.5Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M15.2539 5.00928C17.068 5.13971 18.4993 6.65279 18.4993 8.50016C18.4993 10.3475 17.068 11.8606 15.2539 11.991\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M3 19V17.765C3 16.0999 4.34315 14.75 6 14.75H12C13.6569 14.75 15 16.0999 15 17.765V19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M20.9985 19V17.765C20.9985 16.0999 19.6553 14.75 17.9985 14.75H17.8984\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
|
18304
|
-
"iconName": "people-2, user, group, friend",
|
|
18305
|
-
"variant": {
|
|
18306
|
-
"join": "round",
|
|
18307
|
-
"filled": "off",
|
|
18308
|
-
"radius": "2",
|
|
18309
|
-
"stroke": "2"
|
|
18310
|
-
},
|
|
18311
|
-
"createdAt": "2026-02-13T08:00:42.259331+00:00",
|
|
18312
|
-
"packageName": "round-outlined-radius-2-stroke-2",
|
|
18313
|
-
"componentName": "IconPeople21"
|
|
18314
|
-
},
|
|
18315
18329
|
{
|
|
18316
18330
|
"category": "People",
|
|
18317
18331
|
"svg": "<path d=\"M15.5 6.5C15.5 8.433 13.933 10 12 10C10.067 10 8.5 8.433 8.5 6.5C8.5 4.567 10.067 3 12 3C13.933 3 15.5 4.567 15.5 6.5Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.0011 13.2499C13.3739 13.0868 12.7051 13 12.0011 13C8.60997 13 6.03711 15.0143 4.9836 17.8629C4.5748 18.9682 5.51944 20 6.69796 20H11.0011\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18 15V18M18 18V21M18 18H15M18 18H21\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -18410,6 +18424,20 @@
|
|
|
18410
18424
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
18411
18425
|
"componentName": "IconPeopleGear"
|
|
18412
18426
|
},
|
|
18427
|
+
{
|
|
18428
|
+
"category": "People",
|
|
18429
|
+
"svg": "<path d=\"M12.5 8.5C12.5 10.433 10.933 12 9 12C7.067 12 5.5 10.433 5.5 8.5C5.5 6.567 7.067 5 9 5C10.933 5 12.5 6.567 12.5 8.5Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M15.2539 5.00928C17.068 5.13971 18.4993 6.65279 18.4993 8.50016C18.4993 10.3475 17.068 11.8606 15.2539 11.991\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M3 19V17.765C3 16.0999 4.34315 14.75 6 14.75H12C13.6569 14.75 15 16.0999 15 17.765V19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M20.9985 19V17.765C20.9985 16.0999 19.6553 14.75 17.9985 14.75H17.8984\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
|
18430
|
+
"iconName": "people-group-2, user, friend",
|
|
18431
|
+
"variant": {
|
|
18432
|
+
"join": "round",
|
|
18433
|
+
"filled": "off",
|
|
18434
|
+
"radius": "2",
|
|
18435
|
+
"stroke": "2"
|
|
18436
|
+
},
|
|
18437
|
+
"createdAt": "2026-02-13T08:00:42.259331+00:00",
|
|
18438
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
18439
|
+
"componentName": "IconPeopleGroup2"
|
|
18440
|
+
},
|
|
18413
18441
|
{
|
|
18414
18442
|
"category": "People",
|
|
18415
18443
|
"svg": "<path d=\"M17.5 3H6.5C5.39543 3 4.5 3.89543 4.5 5V19C4.5 20.1046 5.39543 21 6.5 21H17.5C18.6046 21 19.5 20.1046 19.5 19V5C19.5 3.89543 18.6046 3 17.5 3Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"2\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16 21C16 18.7909 14.2091 17 12 17C9.79086 17 8 18.7909 8 21\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 6.5H14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -24318,6 +24346,20 @@
|
|
|
24318
24346
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
24319
24347
|
"componentName": "IconTestTube"
|
|
24320
24348
|
},
|
|
24349
|
+
{
|
|
24350
|
+
"category": "Things",
|
|
24351
|
+
"svg": "<path d=\"M19.0003 9L9.2503 18.75C8.14573 19.8546 6.35487 19.8546 5.2503 18.75C4.14573 17.6454 4.14573 15.8546 5.2503 14.75L15.0003 5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.75 3.25L20.75 10.25\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.5 11.75H16\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 4H6C4.89543 4 4 4.89543 4 6V10\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 20L18 20C19.1046 20 20 19.1046 20 18L20 15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
24352
|
+
"iconName": "test-tube 2, test, lab, filter",
|
|
24353
|
+
"variant": {
|
|
24354
|
+
"join": "round",
|
|
24355
|
+
"filled": "off",
|
|
24356
|
+
"radius": "2",
|
|
24357
|
+
"stroke": "2"
|
|
24358
|
+
},
|
|
24359
|
+
"createdAt": "2026-04-14T14:02:05.42191+00:00",
|
|
24360
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
24361
|
+
"componentName": "IconTestTube2"
|
|
24362
|
+
},
|
|
24321
24363
|
{
|
|
24322
24364
|
"category": "Typography",
|
|
24323
24365
|
"svg": "<path d=\"M4 6V4H12H20V6\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 20V4\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 20H12H14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -292,6 +292,7 @@ export type CentralIconName =
|
|
|
292
292
|
| "IconBranch"
|
|
293
293
|
| "IconBranchSimple"
|
|
294
294
|
| "IconBreakfast"
|
|
295
|
+
| "IconBridge"
|
|
295
296
|
| "IconBrightness"
|
|
296
297
|
| "IconBrilliance"
|
|
297
298
|
| "IconBrokenChainLink1"
|
|
@@ -908,6 +909,7 @@ export type CentralIconName =
|
|
|
908
909
|
| "IconGlobe2"
|
|
909
910
|
| "IconGoatHead"
|
|
910
911
|
| "IconGold"
|
|
912
|
+
| "IconGoldenGateBridge"
|
|
911
913
|
| "IconGoldMedal"
|
|
912
914
|
| "IconGolfBall"
|
|
913
915
|
| "IconGooey"
|
|
@@ -1306,7 +1308,6 @@ export type CentralIconName =
|
|
|
1306
1308
|
| "IconPencilWave"
|
|
1307
1309
|
| "IconPeople"
|
|
1308
1310
|
| "IconPeople2"
|
|
1309
|
-
| "IconPeople21"
|
|
1310
1311
|
| "IconPeopleAdd"
|
|
1311
1312
|
| "IconPeopleAdd2"
|
|
1312
1313
|
| "IconPeopleAdded"
|
|
@@ -1314,6 +1315,7 @@ export type CentralIconName =
|
|
|
1314
1315
|
| "IconPeopleCopy"
|
|
1315
1316
|
| "IconPeopleEdit"
|
|
1316
1317
|
| "IconPeopleGear"
|
|
1318
|
+
| "IconPeopleGroup2"
|
|
1317
1319
|
| "IconPeopleIdCard"
|
|
1318
1320
|
| "IconPeopleLike"
|
|
1319
1321
|
| "IconPeopleNoise"
|
|
@@ -1736,6 +1738,7 @@ export type CentralIconName =
|
|
|
1736
1738
|
| "IconTennis"
|
|
1737
1739
|
| "IconTestflight"
|
|
1738
1740
|
| "IconTestTube"
|
|
1741
|
+
| "IconTestTube2"
|
|
1739
1742
|
| "IconText1"
|
|
1740
1743
|
| "IconText2"
|
|
1741
1744
|
| "IconTextareaDrag"
|
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.1.
|
|
3
|
+
"version": "1.1.189",
|
|
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,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": 1936,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 76,
|
|
@@ -268,7 +268,7 @@
|
|
|
268
268
|
]
|
|
269
269
|
},
|
|
270
270
|
"Building": {
|
|
271
|
-
"count":
|
|
271
|
+
"count": 25,
|
|
272
272
|
"icons": [
|
|
273
273
|
"IconBank",
|
|
274
274
|
"IconBank2",
|
|
@@ -277,6 +277,7 @@
|
|
|
277
277
|
"IconCourt",
|
|
278
278
|
"IconDoor",
|
|
279
279
|
"IconGarage",
|
|
280
|
+
"IconGoldenGateBridge",
|
|
280
281
|
"IconGovernment",
|
|
281
282
|
"IconHome",
|
|
282
283
|
"IconHomeCircle",
|
|
@@ -314,7 +315,7 @@
|
|
|
314
315
|
]
|
|
315
316
|
},
|
|
316
317
|
"Code": {
|
|
317
|
-
"count":
|
|
318
|
+
"count": 65,
|
|
318
319
|
"icons": [
|
|
319
320
|
"IconAgent",
|
|
320
321
|
"IconAgenticCoding",
|
|
@@ -336,6 +337,7 @@
|
|
|
336
337
|
"IconBrackets2",
|
|
337
338
|
"IconBranch",
|
|
338
339
|
"IconBranchSimple",
|
|
340
|
+
"IconBridge",
|
|
339
341
|
"IconBug",
|
|
340
342
|
"IconBugFace",
|
|
341
343
|
"IconChanges",
|
|
@@ -1275,7 +1277,6 @@
|
|
|
1275
1277
|
"IconHead",
|
|
1276
1278
|
"IconPeople",
|
|
1277
1279
|
"IconPeople2",
|
|
1278
|
-
"IconPeople21",
|
|
1279
1280
|
"IconPeopleAdd",
|
|
1280
1281
|
"IconPeopleAdd2",
|
|
1281
1282
|
"IconPeopleAdded",
|
|
@@ -1283,6 +1284,7 @@
|
|
|
1283
1284
|
"IconPeopleCopy",
|
|
1284
1285
|
"IconPeopleEdit",
|
|
1285
1286
|
"IconPeopleGear",
|
|
1287
|
+
"IconPeopleGroup2",
|
|
1286
1288
|
"IconPeopleIdCard",
|
|
1287
1289
|
"IconPeopleLike",
|
|
1288
1290
|
"IconPeopleNoise",
|
|
@@ -1791,7 +1793,7 @@
|
|
|
1791
1793
|
]
|
|
1792
1794
|
},
|
|
1793
1795
|
"Things": {
|
|
1794
|
-
"count":
|
|
1796
|
+
"count": 136,
|
|
1795
1797
|
"icons": [
|
|
1796
1798
|
"IconAnvil",
|
|
1797
1799
|
"IconApps",
|
|
@@ -1914,6 +1916,7 @@
|
|
|
1914
1916
|
"IconTeddyBear",
|
|
1915
1917
|
"IconTelescope",
|
|
1916
1918
|
"IconTestTube",
|
|
1919
|
+
"IconTestTube2",
|
|
1917
1920
|
"IconThinkingBubble",
|
|
1918
1921
|
"IconThinkingBubble1",
|
|
1919
1922
|
"IconThread",
|
|
@@ -2428,6 +2431,7 @@
|
|
|
2428
2431
|
"IconBranch": "branch",
|
|
2429
2432
|
"IconBranchSimple": "branch-simple",
|
|
2430
2433
|
"IconBreakfast": "breakfast, fried-egg",
|
|
2434
|
+
"IconBridge": "bridge, connection",
|
|
2431
2435
|
"IconBrightness": "brightness",
|
|
2432
2436
|
"IconBrilliance": "brilliance, yin yang, ballance",
|
|
2433
2437
|
"IconBrokenChainLink1": "broken-chain-link-1, unlink",
|
|
@@ -3044,6 +3048,7 @@
|
|
|
3044
3048
|
"IconGlobe2": "globe-2, network, translate",
|
|
3045
3049
|
"IconGoatHead": "goat-head, goated",
|
|
3046
3050
|
"IconGold": "gold, goldbars",
|
|
3051
|
+
"IconGoldenGateBridge": "golden-gate-bridge, silicon-valley, sf",
|
|
3047
3052
|
"IconGoldMedal": "gold-medal, first-place, win",
|
|
3048
3053
|
"IconGolfBall": "golf-ball",
|
|
3049
3054
|
"IconGooey": "gooey, morph, liquid-glass",
|
|
@@ -3441,8 +3446,7 @@
|
|
|
3441
3446
|
"IconPencilSparkle": "pencil-sparkle, magic pencil, magic brush",
|
|
3442
3447
|
"IconPencilWave": "pencil-wave, signature, write",
|
|
3443
3448
|
"IconPeople": "people, user, person, avatar",
|
|
3444
|
-
"IconPeople2": "people-2",
|
|
3445
|
-
"IconPeople21": "people-2, user, group, friend",
|
|
3449
|
+
"IconPeople2": "people-2, user, person, member",
|
|
3446
3450
|
"IconPeopleAdd": "people-add, user-add",
|
|
3447
3451
|
"IconPeopleAdd2": "people-add-2, user-add, user, person",
|
|
3448
3452
|
"IconPeopleAdded": "people-added, user-added",
|
|
@@ -3450,6 +3454,7 @@
|
|
|
3450
3454
|
"IconPeopleCopy": "people-copy, members",
|
|
3451
3455
|
"IconPeopleEdit": "people-edit, edit-user, edit-rights, user-rights",
|
|
3452
3456
|
"IconPeopleGear": "people-gear, user-settings, preferences, person",
|
|
3457
|
+
"IconPeopleGroup2": "people-group-2, user, friend",
|
|
3453
3458
|
"IconPeopleIdCard": "people-id-card, profile, user-account, badge, person",
|
|
3454
3459
|
"IconPeopleLike": "people-like, inner circle",
|
|
3455
3460
|
"IconPeopleNoise": "people-noise, audio-quality, user-noise",
|
|
@@ -3872,6 +3877,7 @@
|
|
|
3872
3877
|
"IconTennis": "tennis",
|
|
3873
3878
|
"IconTestflight": "testflight, beta",
|
|
3874
3879
|
"IconTestTube": "test-tube",
|
|
3880
|
+
"IconTestTube2": "test-tube 2, test, lab, filter",
|
|
3875
3881
|
"IconText1": "text-1",
|
|
3876
3882
|
"IconText2": "text-2",
|
|
3877
3883
|
"IconTextareaDrag": "textarea-drag",
|
package/index.d.ts
CHANGED
|
@@ -291,6 +291,7 @@ export { IconBrainSideview, default as IconBrainSideviewDefault, } from "./IconB
|
|
|
291
291
|
export { IconBranch, default as IconBranchDefault } from "./IconBranch";
|
|
292
292
|
export { IconBranchSimple, default as IconBranchSimpleDefault, } from "./IconBranchSimple";
|
|
293
293
|
export { IconBreakfast, default as IconBreakfastDefault, } from "./IconBreakfast";
|
|
294
|
+
export { IconBridge, default as IconBridgeDefault } from "./IconBridge";
|
|
294
295
|
export { IconBrightness, default as IconBrightnessDefault, } from "./IconBrightness";
|
|
295
296
|
export { IconBrilliance, default as IconBrillianceDefault, } from "./IconBrilliance";
|
|
296
297
|
export { IconBrokenChainLink1, default as IconBrokenChainLink1Default, } from "./IconBrokenChainLink1";
|
|
@@ -908,6 +909,7 @@ export { IconGlobe2, default as IconGlobe2Default } from "./IconGlobe2";
|
|
|
908
909
|
export { IconGoatHead, default as IconGoatHeadDefault } from "./IconGoatHead";
|
|
909
910
|
export { IconGold, default as IconGoldDefault } from "./IconGold";
|
|
910
911
|
export { IconGoldMedal, default as IconGoldMedalDefault, } from "./IconGoldMedal";
|
|
912
|
+
export { IconGoldenGateBridge, default as IconGoldenGateBridgeDefault, } from "./IconGoldenGateBridge";
|
|
911
913
|
export { IconGolfBall, default as IconGolfBallDefault } from "./IconGolfBall";
|
|
912
914
|
export { IconGooey, default as IconGooeyDefault } from "./IconGooey";
|
|
913
915
|
export { IconGoogle, default as IconGoogleDefault } from "./IconGoogle";
|
|
@@ -1305,7 +1307,6 @@ export { IconPencilSparkle, default as IconPencilSparkleDefault, } from "./IconP
|
|
|
1305
1307
|
export { IconPencilWave, default as IconPencilWaveDefault, } from "./IconPencilWave";
|
|
1306
1308
|
export { IconPeople, default as IconPeopleDefault } from "./IconPeople";
|
|
1307
1309
|
export { IconPeople2, default as IconPeople2Default } from "./IconPeople2";
|
|
1308
|
-
export { IconPeople21, default as IconPeople21Default } from "./IconPeople21";
|
|
1309
1310
|
export { IconPeopleAdd, default as IconPeopleAddDefault, } from "./IconPeopleAdd";
|
|
1310
1311
|
export { IconPeopleAdd2, default as IconPeopleAdd2Default, } from "./IconPeopleAdd2";
|
|
1311
1312
|
export { IconPeopleAdded, default as IconPeopleAddedDefault, } from "./IconPeopleAdded";
|
|
@@ -1313,6 +1314,7 @@ export { IconPeopleCircle, default as IconPeopleCircleDefault, } from "./IconPeo
|
|
|
1313
1314
|
export { IconPeopleCopy, default as IconPeopleCopyDefault, } from "./IconPeopleCopy";
|
|
1314
1315
|
export { IconPeopleEdit, default as IconPeopleEditDefault, } from "./IconPeopleEdit";
|
|
1315
1316
|
export { IconPeopleGear, default as IconPeopleGearDefault, } from "./IconPeopleGear";
|
|
1317
|
+
export { IconPeopleGroup2, default as IconPeopleGroup2Default, } from "./IconPeopleGroup2";
|
|
1316
1318
|
export { IconPeopleIdCard, default as IconPeopleIdCardDefault, } from "./IconPeopleIdCard";
|
|
1317
1319
|
export { IconPeopleLike, default as IconPeopleLikeDefault, } from "./IconPeopleLike";
|
|
1318
1320
|
export { IconPeopleNoise, default as IconPeopleNoiseDefault, } from "./IconPeopleNoise";
|
|
@@ -1734,6 +1736,7 @@ export { IconTelevision, default as IconTelevisionDefault, } from "./IconTelevis
|
|
|
1734
1736
|
export { IconTelevisionOld, default as IconTelevisionOldDefault, } from "./IconTelevisionOld";
|
|
1735
1737
|
export { IconTennis, default as IconTennisDefault } from "./IconTennis";
|
|
1736
1738
|
export { IconTestTube, default as IconTestTubeDefault } from "./IconTestTube";
|
|
1739
|
+
export { IconTestTube2, default as IconTestTube2Default, } from "./IconTestTube2";
|
|
1737
1740
|
export { IconTestflight, default as IconTestflightDefault, } from "./IconTestflight";
|
|
1738
1741
|
export { IconText1, default as IconText1Default } from "./IconText1";
|
|
1739
1742
|
export { IconText2, default as IconText2Default } from "./IconText2";
|