@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.251 → 1.1.252
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/IconBrokenChainLink3/index.js +1 -1
- package/IconBrokenChainLink3/index.js.map +1 -1
- package/IconBrokenChainLink3/index.mjs +1 -1
- package/IconBrokenChainLink3/index.mjs.map +1 -1
- package/IconComponents/index.js +1 -1
- package/IconComponents/index.js.map +1 -1
- package/IconComponents/index.mjs +1 -1
- package/IconComponents/index.mjs.map +1 -1
- package/IconCursor1/index.js +1 -1
- package/IconCursor1/index.js.map +1 -1
- package/IconCursor1/index.mjs +1 -1
- package/IconCursor1/index.mjs.map +1 -1
- package/IconExplosion/index.js +1 -1
- package/IconExplosion/index.js.map +1 -1
- package/IconExplosion/index.mjs +1 -1
- package/IconExplosion/index.mjs.map +1 -1
- package/IconFormSeal/index.js +1 -1
- package/IconFormSeal/index.js.map +1 -1
- package/IconFormSeal/index.mjs +1 -1
- package/IconFormSeal/index.mjs.map +1 -1
- package/IconGrok/index.js +1 -1
- package/IconGrok/index.js.map +1 -1
- package/IconGrok/index.mjs +1 -1
- package/IconGrok/index.mjs.map +1 -1
- package/IconMakeItPop/index.js +1 -1
- package/IconMakeItPop/index.js.map +1 -1
- package/IconMakeItPop/index.mjs +1 -1
- package/IconMakeItPop/index.mjs.map +1 -1
- package/IconMarker/index.js +1 -1
- package/IconMarker/index.js.map +1 -1
- package/IconMarker/index.mjs +1 -1
- package/IconMarker/index.mjs.map +1 -1
- package/IconRuler/index.js +1 -1
- package/IconRuler/index.js.map +1 -1
- package/IconRuler/index.mjs +1 -1
- package/IconRuler/index.mjs.map +1 -1
- package/IconSubscriptionTick2/index.js +1 -1
- package/IconSubscriptionTick2/index.js.map +1 -1
- package/IconSubscriptionTick2/index.mjs +1 -1
- package/IconSubscriptionTick2/index.mjs.map +1 -1
- package/IconSunHigh/index.js +1 -1
- package/IconSunHigh/index.js.map +1 -1
- package/IconSunHigh/index.mjs +1 -1
- package/IconSunHigh/index.mjs.map +1 -1
- package/IconWindowCursor/index.js +1 -1
- package/IconWindowCursor/index.js.map +1 -1
- package/IconWindowCursor/index.mjs +1 -1
- package/IconWindowCursor/index.mjs.map +1 -1
- package/README.md +1517 -1517
- package/filtered-icons.json +9818 -9818
- package/icons/index.d.ts +1873 -1873
- package/icons-index.json +3 -4230
- 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 +1518 -1518
- package/tsx-icons.json +0 -14123
package/IconRuler/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconRuler/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconRuler: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G
|
|
1
|
+
{"version":3,"sources":["../src/IconRuler/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconRuler: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G ClipPath=\"url(#clip0_6508_53939)\">\n <Path\n d=\"M22 8L16 2L12.5 5.5L9 9L5.5 12.5L2 16L8 22L22 8Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M9 9L11.25 11.25\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12.5 5.5L13.75 6.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M5.5 12.5L6.75 13.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_6508_53939\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\n </CentralIconBase>\n );\n};\n\nexport default IconRuler;\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,eAAAE,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,EAA8C,4BAEjCC,EAAuCC,GAEhD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,KAAE,SAAS,0BACV,EAAAA,QAAA,cAAC,QACC,EAAE,mDACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,oBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["IconRuler_exports","__export","IconRuler","IconRuler_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconRuler","props","React","CentralIconBase","IconRuler_default"]}
|
package/IconRuler/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import r from"react";import s from"react";import{Svg as i}from"react-native-svg";var n=({children:t,size:o=24,...p})=>s.createElement(i,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{ClipPath as l,Defs as a,G as C,Path as e,Rect as u}from"react-native-svg";var h=t=>r.createElement(n,{...t},r.createElement(C,{
|
|
1
|
+
import r from"react";import s from"react";import{Svg as i}from"react-native-svg";var n=({children:t,size:o=24,...p})=>s.createElement(i,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{ClipPath as l,Defs as a,G as C,Path as e,Rect as u}from"react-native-svg";var h=t=>r.createElement(n,{...t},r.createElement(C,{ClipPath:"url(#clip0_6508_53939)"},r.createElement(e,{d:"M22 8L16 2L12.5 5.5L9 9L5.5 12.5L2 16L8 22L22 8Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),r.createElement(e,{d:"M9 9L11.25 11.25",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),r.createElement(e,{d:"M12.5 5.5L13.75 6.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),r.createElement(e,{d:"M5.5 12.5L6.75 13.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),r.createElement(a,null,r.createElement(l,{id:"clip0_6508_53939"},r.createElement(u,{width:"24",height:"24",fill:"white"})))),g=h;export{h as IconRuler,g as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconRuler/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconRuler/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconRuler: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G
|
|
1
|
+
{"version":3,"sources":["../src/IconRuler/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconRuler: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G ClipPath=\"url(#clip0_6508_53939)\">\n <Path\n d=\"M22 8L16 2L12.5 5.5L9 9L5.5 12.5L2 16L8 22L22 8Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M9 9L11.25 11.25\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12.5 5.5L13.75 6.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M5.5 12.5L6.75 13.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_6508_53939\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\n </CentralIconBase>\n );\n};\n\nexport default IconRuler;\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,YAAAG,EAAU,QAAAC,EAAM,KAAAC,EAAG,QAAAC,EAAM,QAAAC,MAAY,mBAEvC,IAAMC,EAAuCC,GAEhDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACL,EAAA,CAAE,SAAS,0BACVK,EAAA,cAACJ,EAAA,CACC,EAAE,mDACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,mBACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,uBACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,uBACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EACAI,EAAA,cAACN,EAAA,KACCM,EAAA,cAACP,EAAA,CAAS,GAAG,oBACXO,EAAA,cAACH,EAAA,CAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","ClipPath","Defs","G","Path","Rect","IconRuler","props","React","CentralIconBase","IconRuler_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var f=Object.create;var i=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of L(o))!d.call(r,p)&&p!==e&&i(r,p,{get:()=>o[p],enumerable:!(s=u(o,p))||s.enumerable});return r};var a=(r,o,e)=>(e=r!=null?f(P(r)):{},l(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>l(i({},"__esModule",{value:!0}),r);var k={};B(k,{IconSubscriptionTick2:()=>m,default:()=>g});module.exports=I(k);var n=a(require("react"));var C=a(require("react")),c=require("react-native-svg"),h=({children:r,size:o=24,...e})=>C.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"),m=r=>n.default.createElement(h,{...r},n.default.createElement(t.G,{
|
|
1
|
+
"use strict";var f=Object.create;var i=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of L(o))!d.call(r,p)&&p!==e&&i(r,p,{get:()=>o[p],enumerable:!(s=u(o,p))||s.enumerable});return r};var a=(r,o,e)=>(e=r!=null?f(P(r)):{},l(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>l(i({},"__esModule",{value:!0}),r);var k={};B(k,{IconSubscriptionTick2:()=>m,default:()=>g});module.exports=I(k);var n=a(require("react"));var C=a(require("react")),c=require("react-native-svg"),h=({children:r,size:o=24,...e})=>C.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"),m=r=>n.default.createElement(h,{...r},n.default.createElement(t.G,{ClipPath:"url(#clip0_9186_28734)"},n.default.createElement(t.Path,{d:"M12 2L9 5H5V9L2 12L5 15V19H9L12 22L15 19H19V15L22 12L19 9V5H15L12 2Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),n.default.createElement(t.Path,{d:"M9 13L11 14.75L14.5 9.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),n.default.createElement(t.Defs,null,n.default.createElement(t.ClipPath,{id:"clip0_9186_28734"},n.default.createElement(t.Rect,{width:"24",height:"24",fill:"white"})))),g=m;0&&(module.exports={IconSubscriptionTick2});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconSubscriptionTick2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconSubscriptionTick2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G
|
|
1
|
+
{"version":3,"sources":["../src/IconSubscriptionTick2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconSubscriptionTick2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G ClipPath=\"url(#clip0_9186_28734)\">\n <Path\n d=\"M12 2L9 5H5V9L2 12L5 15V19H9L12 22L15 19H19V15L22 12L19 9V5H15L12 2Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M9 13L11 14.75L14.5 9.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_9186_28734\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\n </CentralIconBase>\n );\n};\n\nexport default IconSubscriptionTick2;\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,2BAAAE,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,EAA8C,4BAEjCC,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,KAAE,SAAS,0BACV,EAAAA,QAAA,cAAC,QACC,EAAE,uEACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2BACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,oBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["IconSubscriptionTick2_exports","__export","IconSubscriptionTick2","IconSubscriptionTick2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSubscriptionTick2","props","React","CentralIconBase","IconSubscriptionTick2_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import r from"react";import i from"react";import{Svg as s}from"react-native-svg";var e=({children:t,size:o=24,...p})=>i.createElement(s,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{ClipPath as l,Defs as a,G as C,Path as n,Rect as c}from"react-native-svg";var h=t=>r.createElement(e,{...t},r.createElement(C,{
|
|
1
|
+
import r from"react";import i from"react";import{Svg as s}from"react-native-svg";var e=({children:t,size:o=24,...p})=>i.createElement(s,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{ClipPath as l,Defs as a,G as C,Path as n,Rect as c}from"react-native-svg";var h=t=>r.createElement(e,{...t},r.createElement(C,{ClipPath:"url(#clip0_9186_28734)"},r.createElement(n,{d:"M12 2L9 5H5V9L2 12L5 15V19H9L12 22L15 19H19V15L22 12L19 9V5H15L12 2Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),r.createElement(n,{d:"M9 13L11 14.75L14.5 9.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),r.createElement(a,null,r.createElement(l,{id:"clip0_9186_28734"},r.createElement(c,{width:"24",height:"24",fill:"white"})))),k=h;export{h as IconSubscriptionTick2,k as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconSubscriptionTick2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconSubscriptionTick2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G
|
|
1
|
+
{"version":3,"sources":["../src/IconSubscriptionTick2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconSubscriptionTick2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G ClipPath=\"url(#clip0_9186_28734)\">\n <Path\n d=\"M12 2L9 5H5V9L2 12L5 15V19H9L12 22L15 19H19V15L22 12L19 9V5H15L12 2Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M9 13L11 14.75L14.5 9.75\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_9186_28734\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\n </CentralIconBase>\n );\n};\n\nexport default IconSubscriptionTick2;\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,YAAAG,EAAU,QAAAC,EAAM,KAAAC,EAAG,QAAAC,EAAM,QAAAC,MAAY,mBAEvC,IAAMC,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACL,EAAA,CAAE,SAAS,0BACVK,EAAA,cAACJ,EAAA,CACC,EAAE,uEACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,2BACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EACAI,EAAA,cAACN,EAAA,KACCM,EAAA,cAACP,EAAA,CAAS,GAAG,oBACXO,EAAA,cAACH,EAAA,CAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","ClipPath","Defs","G","Path","Rect","IconSubscriptionTick2","props","React","CentralIconBase","IconSubscriptionTick2_default"]}
|
package/IconSunHigh/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var m=Object.create;var l=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,M=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of d(o))!M.call(r,p)&&p!==t&&l(r,p,{get:()=>o[p],enumerable:!(i=c(o,p))||i.enumerable});return r};var C=(r,o,t)=>(t=r!=null?m(P(r)):{},s(o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>s(l({},"__esModule",{value:!0}),r);var v={};g(v,{IconSunHigh:()=>f,default:()=>I});module.exports=B(v);var n=C(require("react"));var a=C(require("react")),h=require("react-native-svg"),u=({children:r,size:o=24,...t})=>a.default.createElement(h.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 e=require("react-native-svg"),f=r=>n.default.createElement(u,{...r},n.default.createElement(e.G,{ClipPath:"url(#clip0_14944_27743)"},n.default.createElement(e.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.5355 8.46447C17.4882 10.4171 17.4882 13.5829 15.5355 15.5355C13.5829 17.4882 10.4171 17.4882 8.46447 15.5355C6.51184 13.5829 6.51184 10.4171 8.46447 8.46447C10.4171 6.51184 13.5829 6.51184 15.5355 8.46447Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),n.default.createElement(e.Path,{d:"M12 3V1M12 23V21M21 12H23M1 12H3M5.63603 5.63604L4.22182 4.22183M19.7782 19.7782L18.364 18.364M18.364 5.63606L19.7782 4.22184M4.22183 19.7782L5.63605 18.364",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),n.default.createElement(e.Defs,null,n.default.createElement(e.ClipPath,{id:"clip0_14944_27743"},n.default.createElement(e.Rect,{width:"24",height:"24",fill:"white"})))),I=f;0&&(module.exports={IconSunHigh});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconSunHigh/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconSunHigh/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconSunHigh: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G
|
|
1
|
+
{"version":3,"sources":["../src/IconSunHigh/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconSunHigh: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G ClipPath=\"url(#clip0_14944_27743)\">\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15.5355 8.46447C17.4882 10.4171 17.4882 13.5829 15.5355 15.5355C13.5829 17.4882 10.4171 17.4882 8.46447 15.5355C6.51184 13.5829 6.51184 10.4171 8.46447 8.46447C10.4171 6.51184 13.5829 6.51184 15.5355 8.46447Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 3V1M12 23V21M21 12H23M1 12H3M5.63603 5.63604L4.22182 4.22183M19.7782 19.7782L18.364 18.364M18.364 5.63606L19.7782 4.22184M4.22183 19.7782L5.63605 18.364\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_14944_27743\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\n </CentralIconBase>\n );\n};\n\nexport default IconSunHigh;\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,iBAAAE,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,EAA8C,4BAEjCC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,KAAE,SAAS,2BACV,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,oNACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+JACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,qBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["IconSunHigh_exports","__export","IconSunHigh","IconSunHigh_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSunHigh","props","React","CentralIconBase","IconSunHigh_default"]}
|
package/IconSunHigh/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import r from"react";import l from"react";import{Svg as i}from"react-native-svg";var t=({children:e,size:o=24,...p})=>l.createElement(i,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{ClipPath as s,Defs as C,G as a,Path as n,Rect as h}from"react-native-svg";var u=e=>r.createElement(t,{...e},r.createElement(a,{
|
|
1
|
+
import r from"react";import l from"react";import{Svg as i}from"react-native-svg";var t=({children:e,size:o=24,...p})=>l.createElement(i,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{ClipPath as s,Defs as C,G as a,Path as n,Rect as h}from"react-native-svg";var u=e=>r.createElement(t,{...e},r.createElement(a,{ClipPath:"url(#clip0_14944_27743)"},r.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.5355 8.46447C17.4882 10.4171 17.4882 13.5829 15.5355 15.5355C13.5829 17.4882 10.4171 17.4882 8.46447 15.5355C6.51184 13.5829 6.51184 10.4171 8.46447 8.46447C10.4171 6.51184 13.5829 6.51184 15.5355 8.46447Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),r.createElement(n,{d:"M12 3V1M12 23V21M21 12H23M1 12H3M5.63603 5.63604L4.22182 4.22183M19.7782 19.7782L18.364 18.364M18.364 5.63606L19.7782 4.22184M4.22183 19.7782L5.63605 18.364",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),r.createElement(C,null,r.createElement(s,{id:"clip0_14944_27743"},r.createElement(h,{width:"24",height:"24",fill:"white"})))),v=u;export{u as IconSunHigh,v as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconSunHigh/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconSunHigh: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G
|
|
1
|
+
{"version":3,"sources":["../src/IconSunHigh/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconSunHigh: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G ClipPath=\"url(#clip0_14944_27743)\">\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15.5355 8.46447C17.4882 10.4171 17.4882 13.5829 15.5355 15.5355C13.5829 17.4882 10.4171 17.4882 8.46447 15.5355C6.51184 13.5829 6.51184 10.4171 8.46447 8.46447C10.4171 6.51184 13.5829 6.51184 15.5355 8.46447Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12 3V1M12 23V21M21 12H23M1 12H3M5.63603 5.63604L4.22182 4.22183M19.7782 19.7782L18.364 18.364M18.364 5.63606L19.7782 4.22184M4.22183 19.7782L5.63605 18.364\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_14944_27743\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\n </CentralIconBase>\n );\n};\n\nexport default IconSunHigh;\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,YAAAG,EAAU,QAAAC,EAAM,KAAAC,EAAG,QAAAC,EAAM,QAAAC,MAAY,mBAEvC,IAAMC,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACL,EAAA,CAAE,SAAS,2BACVK,EAAA,cAACJ,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,oNACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,+JACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EACAI,EAAA,cAACN,EAAA,KACCM,EAAA,cAACP,EAAA,CAAS,GAAG,qBACXO,EAAA,cAACH,EAAA,CAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","ClipPath","Defs","G","Path","Rect","IconSunHigh","props","React","CentralIconBase","IconSunHigh_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var f=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of d(o))!k.call(r,C)&&C!==e&&p(r,C,{get:()=>o[C],enumerable:!(s=m(o,C))||s.enumerable});return r};var l=(r,o,e)=>(e=r!=null?f(P(r)):{},i(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>i(p({},"__esModule",{value:!0}),r);var x={};B(x,{IconWindowCursor:()=>
|
|
1
|
+
"use strict";var f=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of d(o))!k.call(r,C)&&C!==e&&p(r,C,{get:()=>o[C],enumerable:!(s=m(o,C))||s.enumerable});return r};var l=(r,o,e)=>(e=r!=null?f(P(r)):{},i(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>i(p({},"__esModule",{value:!0}),r);var x={};B(x,{IconWindowCursor:()=>c,default:()=>g});module.exports=I(x);var n=l(require("react"));var a=l(require("react")),u=require("react-native-svg"),h=({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 t=require("react-native-svg"),c=r=>n.default.createElement(h,{...r},n.default.createElement(t.G,{ClipPath:"url(#clip0_5564_2941)"},n.default.createElement(t.Path,{d:"M21 11V5H3V20H11",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),n.default.createElement(t.Path,{d:"M15 15L21.5 17L18.5 18.5L17 21.5L15 15Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),n.default.createElement(t.Path,{d:"M5.875 8.75C5.875 9.23325 6.26675 9.625 6.75 9.625C7.23325 9.625 7.625 9.23325 7.625 8.75C7.625 8.26675 7.23325 7.875 6.75 7.875C6.26675 7.875 5.875 8.26675 5.875 8.75ZM9.375 8.75C9.375 9.23325 9.76675 9.625 10.25 9.625C10.7332 9.625 11.125 9.23325 11.125 8.75C11.125 8.26675 10.7332 7.875 10.25 7.875C9.76675 7.875 9.375 8.26675 9.375 8.75ZM12.875 8.75C12.875 9.23325 13.2668 9.625 13.75 9.625C14.2332 9.625 14.625 9.23325 14.625 8.75C14.625 8.26675 14.2332 7.875 13.75 7.875C13.2668 7.875 12.875 8.26675 12.875 8.75Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.75",strokeLinecap:"square"})),n.default.createElement(t.Defs,null,n.default.createElement(t.ClipPath,{id:"clip0_5564_2941"},n.default.createElement(t.Rect,{width:"24",height:"24",fill:"white"})))),g=c;0&&(module.exports={IconWindowCursor});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconWindowCursor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconWindowCursor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G
|
|
1
|
+
{"version":3,"sources":["../src/IconWindowCursor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconWindowCursor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G ClipPath=\"url(#clip0_5564_2941)\">\n <Path\n d=\"M21 11V5H3V20H11\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M15 15L21.5 17L18.5 18.5L17 21.5L15 15Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M5.875 8.75C5.875 9.23325 6.26675 9.625 6.75 9.625C7.23325 9.625 7.625 9.23325 7.625 8.75C7.625 8.26675 7.23325 7.875 6.75 7.875C6.26675 7.875 5.875 8.26675 5.875 8.75ZM9.375 8.75C9.375 9.23325 9.76675 9.625 10.25 9.625C10.7332 9.625 11.125 9.23325 11.125 8.75C11.125 8.26675 10.7332 7.875 10.25 7.875C9.76675 7.875 9.375 8.26675 9.375 8.75ZM12.875 8.75C12.875 9.23325 13.2668 9.625 13.75 9.625C14.2332 9.625 14.625 9.23325 14.625 8.75C14.625 8.26675 14.2332 7.875 13.75 7.875C13.2668 7.875 12.875 8.26675 12.875 8.75Z\"\n fill=\"currentColor\"\n stroke=\"currentColor\"\n strokeWidth=\"0.75\"\n strokeLinecap=\"square\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_5564_2941\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\n </CentralIconBase>\n );\n};\n\nexport default IconWindowCursor;\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,EAA8C,4BAEjCC,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,KAAE,SAAS,yBACV,EAAAA,QAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0CACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,ygBACF,KAAK,eACL,OAAO,eACP,YAAY,OACZ,cAAc,SAChB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,mBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["IconWindowCursor_exports","__export","IconWindowCursor","IconWindowCursor_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconWindowCursor","props","React","CentralIconBase","IconWindowCursor_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import r from"react";import p from"react";import{Svg as s}from"react-native-svg";var n=({children:t,size:o=24,...C})=>p.createElement(s,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{ClipPath as i,Defs as l,G as a,Path as e,Rect as u}from"react-native-svg";var
|
|
1
|
+
import r from"react";import p from"react";import{Svg as s}from"react-native-svg";var n=({children:t,size:o=24,...C})=>p.createElement(s,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{ClipPath as i,Defs as l,G as a,Path as e,Rect as u}from"react-native-svg";var h=t=>r.createElement(n,{...t},r.createElement(a,{ClipPath:"url(#clip0_5564_2941)"},r.createElement(e,{d:"M21 11V5H3V20H11",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),r.createElement(e,{d:"M15 15L21.5 17L18.5 18.5L17 21.5L15 15Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),r.createElement(e,{d:"M5.875 8.75C5.875 9.23325 6.26675 9.625 6.75 9.625C7.23325 9.625 7.625 9.23325 7.625 8.75C7.625 8.26675 7.23325 7.875 6.75 7.875C6.26675 7.875 5.875 8.26675 5.875 8.75ZM9.375 8.75C9.375 9.23325 9.76675 9.625 10.25 9.625C10.7332 9.625 11.125 9.23325 11.125 8.75C11.125 8.26675 10.7332 7.875 10.25 7.875C9.76675 7.875 9.375 8.26675 9.375 8.75ZM12.875 8.75C12.875 9.23325 13.2668 9.625 13.75 9.625C14.2332 9.625 14.625 9.23325 14.625 8.75C14.625 8.26675 14.2332 7.875 13.75 7.875C13.2668 7.875 12.875 8.26675 12.875 8.75Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.75",strokeLinecap:"square"})),r.createElement(l,null,r.createElement(i,{id:"clip0_5564_2941"},r.createElement(u,{width:"24",height:"24",fill:"white"})))),x=h;export{h as IconWindowCursor,x as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconWindowCursor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconWindowCursor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G
|
|
1
|
+
{"version":3,"sources":["../src/IconWindowCursor/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconWindowCursor: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <G ClipPath=\"url(#clip0_5564_2941)\">\n <Path\n d=\"M21 11V5H3V20H11\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M15 15L21.5 17L18.5 18.5L17 21.5L15 15Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M5.875 8.75C5.875 9.23325 6.26675 9.625 6.75 9.625C7.23325 9.625 7.625 9.23325 7.625 8.75C7.625 8.26675 7.23325 7.875 6.75 7.875C6.26675 7.875 5.875 8.26675 5.875 8.75ZM9.375 8.75C9.375 9.23325 9.76675 9.625 10.25 9.625C10.7332 9.625 11.125 9.23325 11.125 8.75C11.125 8.26675 10.7332 7.875 10.25 7.875C9.76675 7.875 9.375 8.26675 9.375 8.75ZM12.875 8.75C12.875 9.23325 13.2668 9.625 13.75 9.625C14.2332 9.625 14.625 9.23325 14.625 8.75C14.625 8.26675 14.2332 7.875 13.75 7.875C13.2668 7.875 12.875 8.26675 12.875 8.75Z\"\n fill=\"currentColor\"\n stroke=\"currentColor\"\n strokeWidth=\"0.75\"\n strokeLinecap=\"square\"\n />\n </G>\n <Defs>\n <ClipPath id=\"clip0_5564_2941\">\n <Rect width=\"24\" height=\"24\" fill=\"white\" />\n </ClipPath>\n </Defs>\n </CentralIconBase>\n );\n};\n\nexport default IconWindowCursor;\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,YAAAG,EAAU,QAAAC,EAAM,KAAAC,EAAG,QAAAC,EAAM,QAAAC,MAAY,mBAEvC,IAAMC,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACL,EAAA,CAAE,SAAS,yBACVK,EAAA,cAACJ,EAAA,CACC,EAAE,mBACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,0CACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,ygBACF,KAAK,eACL,OAAO,eACP,YAAY,OACZ,cAAc,SAChB,CACF,EACAI,EAAA,cAACN,EAAA,KACCM,EAAA,cAACP,EAAA,CAAS,GAAG,mBACXO,EAAA,cAACH,EAAA,CAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","ClipPath","Defs","G","Path","Rect","IconWindowCursor","props","React","CentralIconBase","IconWindowCursor_default"]}
|