@central-icons-react-native/square-filled-radius-0-stroke-2 1.1.201 → 1.1.202
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/IconTestTube2/index.js +1 -1
- package/IconTestTube2/index.js.map +1 -1
- package/IconTestTube2/index.mjs +1 -1
- package/IconTestTube2/index.mjs.map +1 -1
- package/filtered-icons.json +1 -1
- package/icons-index.json +1 -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/skills/central-icons-react-native/SKILL.md +1 -1
- package/tsx-icons.json +1 -1
package/IconTestTube2/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var i=Object.create;var l=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)l(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of d(o))!I.call(r,n)&&n!==e&&l(r,n,{get:()=>o[n],enumerable:!(C=L(o,n))||C.enumerable});return r};var f=(r,o,e)=>(e=r!=null?i(B(r)):{},a(o||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>a(l({},"__esModule",{value:!0}),r);var P={};v(P,{IconTestTube2:()=>c,default:()=>H});module.exports=x(P);var t=f(require("react"));var m=f(require("react")),s=require("react-native-svg"),u=({children:r,size:o=24,...e})=>m.default.createElement(s.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"),c=r=>t.default.createElement(u,{...r},t.default.createElement(p.Path,{d:"M21 21H13V19H19V14H21V21Z",fill:"currentColor"}),t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21.457 9.54297L20.043 10.957L19.25 10.1641L9.95703 19.457C8.46197 20.9519 6.03802 20.9519 4.54297 19.457C3.04808 17.962 3.04808 15.538 4.54297 14.043L13.8359 4.75L13.043 3.95703L14.457 2.54297L21.457 9.54297ZM10.6641 10.75H15.8359L17.8359 8.75L15.25 6.16406L10.6641 10.75Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M10 5H5V11H3V3H10V5Z",fill:"currentColor"})),H=c;0&&(module.exports={IconTestTube2});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +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 d=\"M21 21H13V19H19V14H21V21Z\" fill=\"currentColor\" />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21.457 9.54297L20.043 10.957L19.25 10.1641L9.95703 19.457C8.46197 20.9519 6.03802 20.9519 4.54297 19.457C3.04808 17.962 3.04808 15.538 4.54297 14.043L13.8359 4.75L13.043 3.95703L14.457 2.54297L21.457 9.
|
|
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 d=\"M21 21H13V19H19V14H21V21Z\" fill=\"currentColor\" />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21.457 9.54297L20.043 10.957L19.25 10.1641L9.95703 19.457C8.46197 20.9519 6.03802 20.9519 4.54297 19.457C3.04808 17.962 3.04808 15.538 4.54297 14.043L13.8359 4.75L13.043 3.95703L14.457 2.54297L21.457 9.54297ZM10.6641 10.75H15.8359L17.8359 8.75L15.25 6.16406L10.6641 10.75Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M10 5H5V11H3V3H10V5Z\" fill=\"currentColor\" />\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,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxD,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,oRACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,KAAK,eAAe,CACrD,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"]}
|
package/IconTestTube2/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:e,size:r=24,...l})=>p.createElement(C,{...l,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 a=e=>o.createElement(t,{...e},o.createElement(n,{d:"M21 21H13V19H19V14H21V21Z",fill:"currentColor"}),o.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M21.457 9.54297L20.043 10.957L19.25 10.1641L9.95703 19.457C8.46197 20.9519 6.03802 20.9519 4.54297 19.457C3.04808 17.962 3.04808 15.538 4.54297 14.043L13.8359 4.75L13.043 3.95703L14.457 2.54297L21.457 9.
|
|
1
|
+
import o from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:e,size:r=24,...l})=>p.createElement(C,{...l,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 a=e=>o.createElement(t,{...e},o.createElement(n,{d:"M21 21H13V19H19V14H21V21Z",fill:"currentColor"}),o.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M21.457 9.54297L20.043 10.957L19.25 10.1641L9.95703 19.457C8.46197 20.9519 6.03802 20.9519 4.54297 19.457C3.04808 17.962 3.04808 15.538 4.54297 14.043L13.8359 4.75L13.043 3.95703L14.457 2.54297L21.457 9.54297ZM10.6641 10.75H15.8359L17.8359 8.75L15.25 6.16406L10.6641 10.75Z",fill:"currentColor"}),o.createElement(n,{d:"M10 5H5V11H3V3H10V5Z",fill:"currentColor"})),I=a;export{a as IconTestTube2,I as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +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 d=\"M21 21H13V19H19V14H21V21Z\" fill=\"currentColor\" />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21.457 9.54297L20.043 10.957L19.25 10.1641L9.95703 19.457C8.46197 20.9519 6.03802 20.9519 4.54297 19.457C3.04808 17.962 3.04808 15.538 4.54297 14.043L13.8359 4.75L13.043 3.95703L14.457 2.54297L21.457 9.
|
|
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 d=\"M21 21H13V19H19V14H21V21Z\" fill=\"currentColor\" />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21.457 9.54297L20.043 10.957L19.25 10.1641L9.95703 19.457C8.46197 20.9519 6.03802 20.9519 4.54297 19.457C3.04808 17.962 3.04808 15.538 4.54297 14.043L13.8359 4.75L13.043 3.95703L14.457 2.54297L21.457 9.54297ZM10.6641 10.75H15.8359L17.8359 8.75L15.25 6.16406L10.6641 10.75Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M10 5H5V11H3V3H10V5Z\" fill=\"currentColor\" />\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,CAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,oRACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,uBAAuB,KAAK,eAAe,CACrD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconTestTube2","props","React","CentralIconBase","IconTestTube2_default"]}
|
package/filtered-icons.json
CHANGED
|
@@ -24656,7 +24656,7 @@
|
|
|
24656
24656
|
},
|
|
24657
24657
|
{
|
|
24658
24658
|
"category": "Things",
|
|
24659
|
-
"svg": "<path d=\"M21 21H13V19H19V14H21V21Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.457 9.54297L20.043 10.957L19.25 10.1641L9.95703 19.457C8.46197 20.9519 6.03802 20.9519 4.54297 19.457C3.04808 17.962 3.04808 15.538 4.54297 14.043L13.8359 4.75L13.043 3.95703L14.457 2.54297L21.457 9.
|
|
24659
|
+
"svg": "<path d=\"M21 21H13V19H19V14H21V21Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.457 9.54297L20.043 10.957L19.25 10.1641L9.95703 19.457C8.46197 20.9519 6.03802 20.9519 4.54297 19.457C3.04808 17.962 3.04808 15.538 4.54297 14.043L13.8359 4.75L13.043 3.95703L14.457 2.54297L21.457 9.54297ZM10.6641 10.75H15.8359L17.8359 8.75L15.25 6.16406L10.6641 10.75Z\" fill=\"currentColor\"/><path d=\"M10 5H5V11H3V3H10V5Z\" fill=\"currentColor\"/>",
|
|
24660
24660
|
"iconName": "test-tube 2, test, lab, filter",
|
|
24661
24661
|
"variant": {
|
|
24662
24662
|
"join": "square",
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-filled-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.202",
|
|
4
4
|
"style": "square-filled-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-2/IconHome';",
|