@central-icons-react-native/round-outlined-radius-1-stroke-2 1.1.98 → 1.1.100
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/IconBlankPageLandscape/index.js +1 -1
- package/IconBlankPageLandscape/index.js.map +1 -1
- package/IconBlankPageLandscape/index.mjs +1 -1
- package/IconBlankPageLandscape/index.mjs.map +1 -1
- package/IconClawdbot/index.d.ts +4 -0
- package/IconClawdbot/index.js +2 -0
- package/IconClawdbot/index.js.map +1 -0
- package/IconClawdbot/index.mjs +2 -0
- package/IconClawdbot/index.mjs.map +1 -0
- package/IconFileCloud/index.js +1 -1
- package/IconFileCloud/index.js.map +1 -1
- package/IconFileCloud/index.mjs +1 -1
- package/IconFileCloud/index.mjs.map +1 -1
- package/IconFileDownload/index.js +1 -1
- package/IconFileDownload/index.js.map +1 -1
- package/IconFileDownload/index.mjs +1 -1
- package/IconFileDownload/index.mjs.map +1 -1
- package/IconFileEdit/index.js +1 -1
- package/IconFileEdit/index.js.map +1 -1
- package/IconFileEdit/index.mjs +1 -1
- package/IconFileEdit/index.mjs.map +1 -1
- package/IconFileLink/index.js +1 -1
- package/IconFileLink/index.js.map +1 -1
- package/IconFileLink/index.mjs +1 -1
- package/IconFileLink/index.mjs.map +1 -1
- package/IconFileLock/index.js +1 -1
- package/IconFileLock/index.js.map +1 -1
- package/IconFileLock/index.mjs +1 -1
- package/IconFileLock/index.mjs.map +1 -1
- package/IconFileText/index.js +1 -1
- package/IconFileText/index.js.map +1 -1
- package/IconFileText/index.mjs +1 -1
- package/IconFileText/index.mjs.map +1 -1
- package/IconListAdd/index.js +1 -1
- package/IconListAdd/index.js.map +1 -1
- package/IconListAdd/index.mjs +1 -1
- package/IconListAdd/index.mjs.map +1 -1
- package/IconPageSearch/index.js +1 -1
- package/IconPageSearch/index.js.map +1 -1
- package/IconPageSearch/index.mjs +1 -1
- package/IconPageSearch/index.mjs.map +1 -1
- package/IconPageSearchLines/index.js +1 -1
- package/IconPageSearchLines/index.js.map +1 -1
- package/IconPageSearchLines/index.mjs +1 -1
- package/IconPageSearchLines/index.mjs.map +1 -1
- package/IconPageTextSearch/index.js +1 -1
- package/IconPageTextSearch/index.js.map +1 -1
- package/IconPageTextSearch/index.mjs +1 -1
- package/IconPageTextSearch/index.mjs.map +1 -1
- package/IconScript/index.js +1 -1
- package/IconScript/index.js.map +1 -1
- package/IconScript/index.mjs +1 -1
- package/IconScript/index.mjs.map +1 -1
- package/IconScript2/index.js +1 -1
- package/IconScript2/index.js.map +1 -1
- package/IconScript2/index.mjs +1 -1
- package/IconScript2/index.mjs.map +1 -1
- package/IconTable/index.js +1 -1
- package/IconTable/index.js.map +1 -1
- package/IconTable/index.mjs +1 -1
- package/IconTable/index.mjs.map +1 -1
- package/README.md +1 -0
- package/filtered-icons.json +28 -14
- package/icons/index.d.ts +1 -0
- package/icons-index.json +5 -3
- package/index.d.ts +1 -0
- 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 +21 -14
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconListAdd/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 IconListAdd: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 6H20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconListAdd/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 IconListAdd: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M4 6H20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4 12H10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M15 15L21 15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M18 12V18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4 18H10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconListAdd;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconListAdd","props","React","CentralIconBase","IconListAdd_default"]}
|
package/IconPageSearch/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var m=Object.create;var p=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)p(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of f(o))!B.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(C=k(o,t))||C.enumerable});return r};var i=(r,o,e)=>(e=r!=null?m(h(r)):{},a(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>a(p({},"__esModule",{value:!0}),r);var x={};I(x,{IconPageSearch:()=>l,default:()=>g});module.exports=P(x);var n=i(require("react"));var u=i(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 s=require("react-native-svg"),l=r=>n.default.createElement(d,{...r},n.default.createElement(s.Path,{d:"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M19 19.
|
|
1
|
+
"use strict";var m=Object.create;var p=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)p(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of f(o))!B.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(C=k(o,t))||C.enumerable});return r};var i=(r,o,e)=>(e=r!=null?m(h(r)):{},a(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>a(p({},"__esModule",{value:!0}),r);var x={};I(x,{IconPageSearch:()=>l,default:()=>g});module.exports=P(x);var n=i(require("react"));var u=i(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 s=require("react-native-svg"),l=r=>n.default.createElement(d,{...r},n.default.createElement(s.Path,{d:"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M19 19.9497L20.5 21.5002",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),g=l;0&&(module.exports={IconPageSearch});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconPageSearch/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 IconPageSearch: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 19.
|
|
1
|
+
{"version":3,"sources":["../src/IconPageSearch/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 IconPageSearch: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 19.9497L20.5 21.5002\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPageSearch;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,oBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,yKACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gGACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconPageSearch_exports","__export","IconPageSearch","IconPageSearch_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPageSearch","props","React","CentralIconBase","IconPageSearch_default"]}
|
package/IconPageSearch/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import s from"react";import{Svg as C}from"react-native-svg";var n=({children:e,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"},e);import{Path as t}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(t,{d:"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M19 19.
|
|
1
|
+
import o from"react";import s from"react";import{Svg as C}from"react-native-svg";var n=({children:e,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"},e);import{Path as t}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(t,{d:"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M19 19.9497L20.5 21.5002",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),B=a;export{a as IconPageSearch,B as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconPageSearch/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 IconPageSearch: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 19.
|
|
1
|
+
{"version":3,"sources":["../src/IconPageSearch/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 IconPageSearch: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 19.9497L20.5 21.5002\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPageSearch;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,yKACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gGACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPageSearch","props","React","CentralIconBase","IconPageSearch_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var l=Object.create;var i=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},d=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of m(o))!f.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(p=L(o,s))||p.enumerable});return r};var k=(r,o,e)=>(e=r!=null?l(h(r)):{},d(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>d(i({},"__esModule",{value:!0}),r);var g={};B(g,{IconPageSearchLines:()=>c,default:()=>P});module.exports=I(g);var n=k(require("react"));var u=k(require("react")),C=require("react-native-svg"),a=({children:r,size:o=24,...e})=>u.default.createElement(C.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),c=r=>n.default.createElement(a,{...r},n.default.createElement(t.Path,{d:"M19.1213 20.1213C17.9497 21.2929 16.0503 21.2929 14.8787 20.1213C13.7071 18.9497 13.7071 17.0503 14.8787 15.8787C16.0503 14.7071 17.9497 14.7071 19.1213 15.8787C20.2929 17.0503 20.2929 18.9497 19.1213 20.1213Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M19 11V4C19 3.44772 18.5523 3 18 3H5C4.44772 3 4 3.44772 4 4V20C4 20.5523 4.44772 21 5 21H10.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M8 15H9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M8 7H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M8 11H11",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M19.1211 20.
|
|
1
|
+
"use strict";var l=Object.create;var i=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},d=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of m(o))!f.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(p=L(o,s))||p.enumerable});return r};var k=(r,o,e)=>(e=r!=null?l(h(r)):{},d(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>d(i({},"__esModule",{value:!0}),r);var g={};B(g,{IconPageSearchLines:()=>c,default:()=>P});module.exports=I(g);var n=k(require("react"));var u=k(require("react")),C=require("react-native-svg"),a=({children:r,size:o=24,...e})=>u.default.createElement(C.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),c=r=>n.default.createElement(a,{...r},n.default.createElement(t.Path,{d:"M19.1213 20.1213C17.9497 21.2929 16.0503 21.2929 14.8787 20.1213C13.7071 18.9497 13.7071 17.0503 14.8787 15.8787C16.0503 14.7071 17.9497 14.7071 19.1213 15.8787C20.2929 17.0503 20.2929 18.9497 19.1213 20.1213Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M19 11V4C19 3.44772 18.5523 3 18 3H5C4.44772 3 4 3.44772 4 4V20C4 20.5523 4.44772 21 5 21H10.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M8 15H9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M8 7H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M8 11H11",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M19.1211 20.1211L20.9998 21.9998",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),P=c;0&&(module.exports={IconPageSearchLines});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconPageSearchLines/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 IconPageSearchLines: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.1213 20.1213C17.9497 21.2929 16.0503 21.2929 14.8787 20.1213C13.7071 18.9497 13.7071 17.0503 14.8787 15.8787C16.0503 14.7071 17.9497 14.7071 19.1213 15.8787C20.2929 17.0503 20.2929 18.9497 19.1213 20.1213Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 11V4C19 3.44772 18.5523 3 18 3H5C4.44772 3 4 3.44772 4 4V20C4 20.5523 4.44772 21 5 21H10.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 15H9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 7H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 11H11\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.1211 20.
|
|
1
|
+
{"version":3,"sources":["../src/IconPageSearchLines/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 IconPageSearchLines: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.1213 20.1213C17.9497 21.2929 16.0503 21.2929 14.8787 20.1213C13.7071 18.9497 13.7071 17.0503 14.8787 15.8787C16.0503 14.7071 17.9497 14.7071 19.1213 15.8787C20.2929 17.0503 20.2929 18.9497 19.1213 20.1213Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 11V4C19 3.44772 18.5523 3 18 3H5C4.44772 3 4 3.44772 4 4V20C4 20.5523 4.44772 21 5 21H10.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 15H9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 7H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 11H11\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.1211 20.1211L20.9998 21.9998\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPageSearchLines;\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,yBAAAE,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,EAAiDC,GAE1D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,oNACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iGACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconPageSearchLines_exports","__export","IconPageSearchLines","IconPageSearchLines_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPageSearchLines","props","React","CentralIconBase","IconPageSearchLines_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import r from"react";import i from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:o=24,...s})=>i.createElement(p,{...s,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var d=n=>r.createElement(t,{...n},r.createElement(e,{d:"M19.1213 20.1213C17.9497 21.2929 16.0503 21.2929 14.8787 20.1213C13.7071 18.9497 13.7071 17.0503 14.8787 15.8787C16.0503 14.7071 17.9497 14.7071 19.1213 15.8787C20.2929 17.0503 20.2929 18.9497 19.1213 20.1213Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M19 11V4C19 3.44772 18.5523 3 18 3H5C4.44772 3 4 3.44772 4 4V20C4 20.5523 4.44772 21 5 21H10.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M8 15H9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M8 7H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M8 11H11",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M19.1211 20.
|
|
1
|
+
import r from"react";import i from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:o=24,...s})=>i.createElement(p,{...s,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var d=n=>r.createElement(t,{...n},r.createElement(e,{d:"M19.1213 20.1213C17.9497 21.2929 16.0503 21.2929 14.8787 20.1213C13.7071 18.9497 13.7071 17.0503 14.8787 15.8787C16.0503 14.7071 17.9497 14.7071 19.1213 15.8787C20.2929 17.0503 20.2929 18.9497 19.1213 20.1213Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M19 11V4C19 3.44772 18.5523 3 18 3H5C4.44772 3 4 3.44772 4 4V20C4 20.5523 4.44772 21 5 21H10.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M8 15H9",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M8 7H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M8 11H11",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M19.1211 20.1211L20.9998 21.9998",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),f=d;export{d as IconPageSearchLines,f as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconPageSearchLines/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 IconPageSearchLines: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.1213 20.1213C17.9497 21.2929 16.0503 21.2929 14.8787 20.1213C13.7071 18.9497 13.7071 17.0503 14.8787 15.8787C16.0503 14.7071 17.9497 14.7071 19.1213 15.8787C20.2929 17.0503 20.2929 18.9497 19.1213 20.1213Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 11V4C19 3.44772 18.5523 3 18 3H5C4.44772 3 4 3.44772 4 4V20C4 20.5523 4.44772 21 5 21H10.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 15H9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 7H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 11H11\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.1211 20.
|
|
1
|
+
{"version":3,"sources":["../src/IconPageSearchLines/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 IconPageSearchLines: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.1213 20.1213C17.9497 21.2929 16.0503 21.2929 14.8787 20.1213C13.7071 18.9497 13.7071 17.0503 14.8787 15.8787C16.0503 14.7071 17.9497 14.7071 19.1213 15.8787C20.2929 17.0503 20.2929 18.9497 19.1213 20.1213Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 11V4C19 3.44772 18.5523 3 18 3H5C4.44772 3 4 3.44772 4 4V20C4 20.5523 4.44772 21 5 21H10.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 15H9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 7H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 11H11\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19.1211 20.1211L20.9998 21.9998\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPageSearchLines;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,oNACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iGACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPageSearchLines","props","React","CentralIconBase","IconPageSearchLines_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var l=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of h(o))!x.call(r,s)&&s!==e&&p(r,s,{get:()=>o[s],enumerable:!(C=m(o,s))||C.enumerable});return r};var d=(r,o,e)=>(e=r!=null?l(f(r)):{},a(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>a(p({},"__esModule",{value:!0}),r);var g={};B(g,{IconPageTextSearch:()=>k,default:()=>P});module.exports=I(g);var t=d(require("react"));var i=d(require("react")),u=require("react-native-svg"),c=({children:r,size:o=24,...e})=>i.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"),k=r=>t.default.createElement(c,{...r},t.default.createElement(n.Path,{d:"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M19 19.
|
|
1
|
+
"use strict";var l=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of h(o))!x.call(r,s)&&s!==e&&p(r,s,{get:()=>o[s],enumerable:!(C=m(o,s))||C.enumerable});return r};var d=(r,o,e)=>(e=r!=null?l(f(r)):{},a(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>a(p({},"__esModule",{value:!0}),r);var g={};B(g,{IconPageTextSearch:()=>k,default:()=>P});module.exports=I(g);var t=d(require("react"));var i=d(require("react")),u=require("react-native-svg"),c=({children:r,size:o=24,...e})=>i.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"),k=r=>t.default.createElement(c,{...r},t.default.createElement(n.Path,{d:"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M19 19.9497L20.5 21.5002",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M9 7H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.default.createElement(n.Path,{d:"M9 11H12",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),P=k;0&&(module.exports={IconPageTextSearch});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconPageTextSearch/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 IconPageTextSearch: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M19 19.
|
|
1
|
+
{"version":3,"sources":["../src/IconPageTextSearch/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 IconPageTextSearch: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M19 19.9497L20.5 21.5002\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M9 7H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M9 11H12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPageTextSearch;\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,wBAAAE,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,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,yKACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gGACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2BACF,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,CACF,EAIGE,EAAQJ","names":["IconPageTextSearch_exports","__export","IconPageTextSearch","IconPageTextSearch_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPageTextSearch","props","React","CentralIconBase","IconPageTextSearch_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import p from"react";import{Svg as C}from"react-native-svg";var n=({children:t,size:r=24,...s})=>p.createElement(C,{...s,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:"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(e,{d:"M19 19.
|
|
1
|
+
import o from"react";import p from"react";import{Svg as C}from"react-native-svg";var n=({children:t,size:r=24,...s})=>p.createElement(C,{...s,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:"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(e,{d:"M19 19.9497L20.5 21.5002",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(e,{d:"M9 7H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(e,{d:"M9 11H12",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),x=a;export{a as IconPageTextSearch,x as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconPageTextSearch/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 IconPageTextSearch: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M19 19.
|
|
1
|
+
{"version":3,"sources":["../src/IconPageTextSearch/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 IconPageTextSearch: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20 17.5C20 18.4537 19.6186 19.3182 19 19.9495C18.3647 20.5978 17.4793 21 16.5 21C14.567 21 13 19.433 13 17.5C13 15.567 14.567 14 16.5 14C18.433 14 20 15.567 20 17.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M19 19.9497L20.5 21.5002\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M9 7H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M9 11H12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPageTextSearch;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,yKACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gGACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2BACF,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,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPageTextSearch","props","React","CentralIconBase","IconPageTextSearch_default"]}
|
package/IconScript/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var m=Object.create;var s=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,M=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},p=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let i of L(o))!M.call(r,i)&&i!==e&&s(r,i,{get:()=>o[i],enumerable:!(C=c(o,i))||C.enumerable});return r};var k=(r,o,e)=>(e=r!=null?m(f(r)):{},p(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),B=r=>p(s({},"__esModule",{value:!0}),r);var v={};h(v,{IconScript:()=>a,default:()=>I});module.exports=B(v);var t=k(require("react"));var l=k(require("react")),d=require("react-native-svg"),u=({children:r,size:o=24,...e})=>l.default.createElement(d.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(u,{...r},t.default.createElement(n.Path,{d:"M7 15.
|
|
1
|
+
"use strict";var m=Object.create;var s=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,M=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},p=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let i of L(o))!M.call(r,i)&&i!==e&&s(r,i,{get:()=>o[i],enumerable:!(C=c(o,i))||C.enumerable});return r};var k=(r,o,e)=>(e=r!=null?m(f(r)):{},p(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),B=r=>p(s({},"__esModule",{value:!0}),r);var v={};h(v,{IconScript:()=>a,default:()=>I});module.exports=B(v);var t=k(require("react"));var l=k(require("react")),d=require("react-native-svg"),u=({children:r,size:o=24,...e})=>l.default.createElement(d.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(u,{...r},t.default.createElement(n.Path,{d:"M7 15.4996C7 15.4996 7 8.27504 7 5.9964C7 5.46648 7.21052 4.95846 7.58617 4.58406C7.96104 4.20966 8.46974 4 9.00035 4C12.1715 4 18 4 18 4",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"square",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M13.9974 20L6.0329 20C5.49368 20 4.97658 19.7859 4.59526 19.4047C4.21395 19.0235 4 18.5063 4 17.9675C4 17.631 4 17.2958 4 16.9999C4 16.4476 4.44821 16 5.00049 16C7.59921 16 9.40079 16 11.9995 16C12.5518 16 13 16.4477 13 17L13 18.002C13 19.105 13.895 20 14.998 20H15.002C16.105 20 17 19.105 17 18.002V9",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"square",strokeLinejoin:"round"}),t.default.createElement(n.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M19 4C19.5304 4 20.0393 4.21077 20.4143 4.58585C20.7892 4.96092 21 5.46954 21 6C21 6.6874 21 7.42731 21 8.00031C21 8.5526 20.5523 9 20 9H17V6C17 5.46954 17.2108 4.96092 17.5857 4.58585C17.9607 4.21077 18.4696 4 19 4Z",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M11 8H13",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M11 12H12",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),I=a;0&&(module.exports={IconScript});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconScript/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconScript/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 IconScript: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7 15.
|
|
1
|
+
{"version":3,"sources":["../src/IconScript/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 IconScript: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7 15.4996C7 15.4996 7 8.27504 7 5.9964C7 5.46648 7.21052 4.95846 7.58617 4.58406C7.96104 4.20966 8.46974 4 9.00035 4C12.1715 4 18 4 18 4\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13.9974 20L6.0329 20C5.49368 20 4.97658 19.7859 4.59526 19.4047C4.21395 19.0235 4 18.5063 4 17.9675C4 17.631 4 17.2958 4 16.9999C4 16.4476 4.44821 16 5.00049 16C7.59921 16 9.40079 16 11.9995 16C12.5518 16 13 16.4477 13 17L13 18.002C13 19.105 13.895 20 14.998 20H15.002C16.105 20 17 19.105 17 18.002V9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19 4C19.5304 4 20.0393 4.21077 20.4143 4.58585C20.7892 4.96092 21 5.46954 21 6C21 6.6874 21 7.42731 21 8.00031C21 8.5526 20.5523 9 20 9H17V6C17 5.46954 17.2108 4.96092 17.5857 4.58585C17.9607 4.21077 18.4696 4 19 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11 8H13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11 12H12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconScript;\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,EAAqB,4BAERC,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4IACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,SACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gTACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,SACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,2NACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconScript_exports","__export","IconScript","IconScript_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconScript","props","React","CentralIconBase","IconScript_default"]}
|
package/IconScript/index.mjs
CHANGED
|
@@ -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,...i})=>s.createElement(C,{...i,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 p=t=>o.createElement(n,{...t},o.createElement(e,{d:"M7 15.
|
|
1
|
+
import o from"react";import s from"react";import{Svg as C}from"react-native-svg";var n=({children:t,size:r=24,...i})=>s.createElement(C,{...i,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 p=t=>o.createElement(n,{...t},o.createElement(e,{d:"M7 15.4996C7 15.4996 7 8.27504 7 5.9964C7 5.46648 7.21052 4.95846 7.58617 4.58406C7.96104 4.20966 8.46974 4 9.00035 4C12.1715 4 18 4 18 4",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"square",strokeLinejoin:"round"}),o.createElement(e,{d:"M13.9974 20L6.0329 20C5.49368 20 4.97658 19.7859 4.59526 19.4047C4.21395 19.0235 4 18.5063 4 17.9675C4 17.631 4 17.2958 4 16.9999C4 16.4476 4.44821 16 5.00049 16C7.59921 16 9.40079 16 11.9995 16C12.5518 16 13 16.4477 13 17L13 18.002C13 19.105 13.895 20 14.998 20H15.002C16.105 20 17 19.105 17 18.002V9",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"square",strokeLinejoin:"round"}),o.createElement(e,{fillRule:"evenodd",clipRule:"evenodd",d:"M19 4C19.5304 4 20.0393 4.21077 20.4143 4.58585C20.7892 4.96092 21 5.46954 21 6C21 6.6874 21 7.42731 21 8.00031C21 8.5526 20.5523 9 20 9H17V6C17 5.46954 17.2108 4.96092 17.5857 4.58585C17.9607 4.21077 18.4696 4 19 4Z",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M11 8H13",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M11 12H12",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),M=p;export{p as IconScript,M as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconScript/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconScript/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 IconScript: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7 15.
|
|
1
|
+
{"version":3,"sources":["../src/IconScript/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 IconScript: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7 15.4996C7 15.4996 7 8.27504 7 5.9964C7 5.46648 7.21052 4.95846 7.58617 4.58406C7.96104 4.20966 8.46974 4 9.00035 4C12.1715 4 18 4 18 4\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13.9974 20L6.0329 20C5.49368 20 4.97658 19.7859 4.59526 19.4047C4.21395 19.0235 4 18.5063 4 17.9675C4 17.631 4 17.2958 4 16.9999C4 16.4476 4.44821 16 5.00049 16C7.59921 16 9.40079 16 11.9995 16C12.5518 16 13 16.4477 13 17L13 18.002C13 19.105 13.895 20 14.998 20H15.002C16.105 20 17 19.105 17 18.002V9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19 4C19.5304 4 20.0393 4.21077 20.4143 4.58585C20.7892 4.96092 21 5.46954 21 6C21 6.6874 21 7.42731 21 8.00031C21 8.5526 20.5523 9 20 9H17V6C17 5.46954 17.2108 4.96092 17.5857 4.58585C17.9607 4.21077 18.4696 4 19 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11 8H13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M11 12H12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconScript;\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,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4IACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,SACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gTACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,SACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,2NACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconScript","props","React","CentralIconBase","IconScript_default"]}
|
package/IconScript2/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var c=Object.create;var C=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var L=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},p=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of f(o))!I.call(r,t)&&t!==e&&C(r,t,{get:()=>o[t],enumerable:!(s=k(o,t))||s.enumerable});return r};var l=(r,o,e)=>(e=r!=null?c(B(r)):{},p(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>p(C({},"__esModule",{value:!0}),r);var x={};L(x,{IconScript2:()=>m,default:()=>v});module.exports=h(x);var n=l(require("react"));var a=l(require("react")),u=require("react-native-svg"),d=({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 i=require("react-native-svg"),m=r=>n.default.createElement(d,{...r},n.default.createElement(i.Path,{d:"M7 15.
|
|
1
|
+
"use strict";var c=Object.create;var C=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var L=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},p=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of f(o))!I.call(r,t)&&t!==e&&C(r,t,{get:()=>o[t],enumerable:!(s=k(o,t))||s.enumerable});return r};var l=(r,o,e)=>(e=r!=null?c(B(r)):{},p(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),h=r=>p(C({},"__esModule",{value:!0}),r);var x={};L(x,{IconScript2:()=>m,default:()=>v});module.exports=h(x);var n=l(require("react"));var a=l(require("react")),u=require("react-native-svg"),d=({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 i=require("react-native-svg"),m=r=>n.default.createElement(d,{...r},n.default.createElement(i.Path,{d:"M7 15.4996C7 15.4996 7 8.27504 7 5.9964C7 5.46648 7.21052 4.95846 7.58617 4.58406C7.96104 4.20966 8.46974 4 9.00035 4C12.1715 4 18 4 18 4",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"square",strokeLinejoin:"round"}),n.default.createElement(i.Path,{d:"M13.9974 20L6.0329 20C5.49368 20 4.97658 19.7859 4.59526 19.4047C4.21395 19.0235 4 18.5063 4 17.9675C4 17.631 4 17.2958 4 16.9999C4 16.4476 4.44821 16 5.00049 16C7.59921 16 9.40079 16 11.9995 16C12.5518 16 13 16.4477 13 17L13 18.002C13 19.105 13.895 20 14.998 20H15.002C16.105 20 17 19.105 17 18.002V9",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"square",strokeLinejoin:"round"}),n.default.createElement(i.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M19 4C19.5304 4 20.0393 4.21077 20.4143 4.58585C20.7892 4.96092 21 5.46954 21 6C21 6.6874 21 7.42731 21 8.00031C21 8.5526 20.5523 9 20 9H17V6C17 5.46954 17.2108 4.96092 17.5857 4.58585C17.9607 4.21077 18.4696 4 19 4Z",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),v=m;0&&(module.exports={IconScript2});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconScript2/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconScript2/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 IconScript2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7 15.
|
|
1
|
+
{"version":3,"sources":["../src/IconScript2/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 IconScript2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7 15.4996C7 15.4996 7 8.27504 7 5.9964C7 5.46648 7.21052 4.95846 7.58617 4.58406C7.96104 4.20966 8.46974 4 9.00035 4C12.1715 4 18 4 18 4\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13.9974 20L6.0329 20C5.49368 20 4.97658 19.7859 4.59526 19.4047C4.21395 19.0235 4 18.5063 4 17.9675C4 17.631 4 17.2958 4 16.9999C4 16.4476 4.44821 16 5.00049 16C7.59921 16 9.40079 16 11.9995 16C12.5518 16 13 16.4477 13 17L13 18.002C13 19.105 13.895 20 14.998 20H15.002C16.105 20 17 19.105 17 18.002V9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19 4C19.5304 4 20.0393 4.21077 20.4143 4.58585C20.7892 4.96092 21 5.46954 21 6C21 6.6874 21 7.42731 21 8.00031C21 8.5526 20.5523 9 20 9H17V6C17 5.46954 17.2108 4.96092 17.5857 4.58585C17.9607 4.21077 18.4696 4 19 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconScript2;\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,EAAqB,4BAERC,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,4IACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,SACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gTACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,SACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,2NACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconScript2_exports","__export","IconScript2","IconScript2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconScript2","props","React","CentralIconBase","IconScript2_default"]}
|
package/IconScript2/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import i from"react";import{Svg as s}from"react-native-svg";var n=({children:e,size:r=24,...C})=>i.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var p=e=>o.createElement(n,{...e},o.createElement(t,{d:"M7 15.
|
|
1
|
+
import o from"react";import i from"react";import{Svg as s}from"react-native-svg";var n=({children:e,size:r=24,...C})=>i.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var p=e=>o.createElement(n,{...e},o.createElement(t,{d:"M7 15.4996C7 15.4996 7 8.27504 7 5.9964C7 5.46648 7.21052 4.95846 7.58617 4.58406C7.96104 4.20966 8.46974 4 9.00035 4C12.1715 4 18 4 18 4",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"square",strokeLinejoin:"round"}),o.createElement(t,{d:"M13.9974 20L6.0329 20C5.49368 20 4.97658 19.7859 4.59526 19.4047C4.21395 19.0235 4 18.5063 4 17.9675C4 17.631 4 17.2958 4 16.9999C4 16.4476 4.44821 16 5.00049 16C7.59921 16 9.40079 16 11.9995 16C12.5518 16 13 16.4477 13 17L13 18.002C13 19.105 13.895 20 14.998 20H15.002C16.105 20 17 19.105 17 18.002V9",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"square",strokeLinejoin:"round"}),o.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M19 4C19.5304 4 20.0393 4.21077 20.4143 4.58585C20.7892 4.96092 21 5.46954 21 6C21 6.6874 21 7.42731 21 8.00031C21 8.5526 20.5523 9 20 9H17V6C17 5.46954 17.2108 4.96092 17.5857 4.58585C17.9607 4.21077 18.4696 4 19 4Z",stroke:"currentColor",strokeWidth:"2",strokeMiterlimit:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),I=p;export{p as IconScript2,I as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconScript2/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 IconScript2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7 15.
|
|
1
|
+
{"version":3,"sources":["../src/IconScript2/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 IconScript2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7 15.4996C7 15.4996 7 8.27504 7 5.9964C7 5.46648 7.21052 4.95846 7.58617 4.58406C7.96104 4.20966 8.46974 4 9.00035 4C12.1715 4 18 4 18 4\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13.9974 20L6.0329 20C5.49368 20 4.97658 19.7859 4.59526 19.4047C4.21395 19.0235 4 18.5063 4 17.9675C4 17.631 4 17.2958 4 16.9999C4 16.4476 4.44821 16 5.00049 16C7.59921 16 9.40079 16 11.9995 16C12.5518 16 13 16.4477 13 17L13 18.002C13 19.105 13.895 20 14.998 20H15.002C16.105 20 17 19.105 17 18.002V9\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19 4C19.5304 4 20.0393 4.21077 20.4143 4.58585C20.7892 4.96092 21 5.46954 21 6C21 6.6874 21 7.42731 21 8.00031C21 8.5526 20.5523 9 20 9H17V6C17 5.46954 17.2108 4.96092 17.5857 4.58585C17.9607 4.21077 18.4696 4 19 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeMiterlimit=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconScript2;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,4IACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,SACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gTACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,SACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,2NACF,OAAO,eACP,YAAY,IACZ,iBAAiB,MACjB,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconScript2","props","React","CentralIconBase","IconScript2_default"]}
|
package/IconTable/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var l=Object.create;var t=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var i=Object.getPrototypeOf,u=Object.prototype.hasOwnProperty;var f=(L,r)=>{for(var C in r)t(L,C,{get:r[C],enumerable:!0})},Z=(L,r,C,M)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of c(r))!u.call(L,o)&&o!==C&&t(L,o,{get:()=>r[o],enumerable:!(M=m(r,o))||M.enumerable});return L};var p=(L,r,C)=>(C=L!=null?l(i(L)):{},Z(r||!L||!L.__esModule?t(C,"default",{value:L,enumerable:!0}):C,L)),B=L=>Z(t({},"__esModule",{value:!0}),L);var d={};f(d,{IconTable:()=>a,default:()=>I});module.exports=B(d);var e=p(require("react"));var H=p(require("react")),V=require("react-native-svg"),s=({children:L,size:r=24,...C})=>H.default.createElement(V.Svg,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},L);var n=require("react-native-svg"),a=L=>e.default.createElement(s,{...L},e.default.createElement(n.Path,{d:"M19.891 4.54601L19 5L19 5L19.891 4.54601ZM19.454 4.10899L19.908 3.21799L19.908 3.21799L19.454 4.10899ZM4.54601 4.10899L4.09202 3.21799L4.09202 3.21799L4.54601 4.10899ZM4.10899 4.54601L3.21799 4.09202L3.21799 4.09202L4.10899 4.54601ZM4.10899 19.454L3.21799 19.908L3.21799 19.908L4.10899 19.454ZM4.54601 19.891L5 19L5 19L4.54601 19.891ZM19.454 19.891L19 19L19 19L19.454 19.891ZM19.891 19.454L19 19L19 19L19.891 19.454ZM20 5.6H19V18.4H20H21V5.6H20ZM20 5.6H21C21 5.33648 21.0008 5.07869 20.9831 4.86177C20.9644 4.63318 20.9203 4.36344 20.782 4.09202L19.891 4.54601L19 5C18.9707 4.94249 18.9811 4.91972 18.9897 5.02463C18.9992 5.14122 19 5.30347 19 5.6H20ZM19.891 4.54601L20.782 4.09202C20.5903 3.71569 20.2843 3.40973 19.908 3.21799L19.454 4.10899L19 5L19 5L19.891 4.54601ZM18.4 4V5C18.6965 5 18.8588 5.00078 18.9754 5.0103C19.0803 5.01887 19.0575 5.0293 19 5L19.454 4.10899L19.908 3.21799C19.6366 3.07969 19.3668 3.03562 19.1382 3.01695C18.9213 2.99922 18.6635 3 18.4 3V4ZM5.6 4V5H18.4V4V3H5.6V4ZM5.6 4V3C5.33647 3 5.07869 2.99922 4.86177 3.01695C4.63318 3.03562 4.36344 3.07969 4.09202 3.21799L4.54601 4.10899L5 5C4.94249 5.0293 4.91972 5.01887 5.02463 5.0103C5.14122 5.00078 5.30347 5 5.6 5V4ZM4.10899 4.54601L5 5L5 5L4.54601 4.10899L4.09202 3.21799C3.71569 3.40973 3.40973 3.7157 3.21799 4.09202L4.10899 4.54601ZM4 5.6H5C5 5.30347 5.00078 5.14122 5.0103 5.02463C5.01887 4.91972 5.0293 4.94249 5 5L4.10899 4.54601L3.21799 4.09202C3.07969 4.36344 3.03562 4.63318 3.01695 4.86177C2.99922 5.07869 3 5.33647 3 5.6H4ZM4 18.4H5V5.6H4H3V18.4H4ZM4 18.4H3C3 18.6635 2.99922 18.9213 3.01695 19.1382C3.03562 19.3668 3.07969 19.6366 3.21799 19.908L4.10899 19.454L5 19C5.0293 19.0575 5.01887 19.0803 5.0103 18.9754C5.00078 18.8588 5 18.6965 5 18.4H4ZM4.54601 19.891L5 19L5 19L4.10899 19.454L3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782L4.54601 19.891ZM5.6 20V19C5.30347 19 5.14122 18.9992 5.02463 18.9897C4.91972 18.9811 4.94249 18.9707 5 19L4.54601 19.891L4.09202 20.782C4.36344 20.9203 4.63318 20.9644 4.86177 20.9831C5.07869 21.0008 5.33647 21 5.6 21V20ZM18.4 20V19H5.6V20V21H18.4V20ZM18.4 20V21C18.6635 21 18.9213 21.0008 19.1382 20.9831C19.3668 20.9644 19.6366 20.9203 19.908 20.782L19.454 19.891L19 19C19.0575 18.9707 19.0803 18.9811 18.9754 18.9897C18.8588 18.9992 18.6965 19 18.4 19V20ZM19.891 19.454L19 19L19 19L19.454 19.891L19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908L19.891 19.454ZM20 18.4H19C19 18.6965 18.9992 18.8588 18.9897 18.9754C18.9811 19.0803 18.9707 19.0575 19 19L19.891 19.454L20.782 19.908C20.9203 19.6366 20.9644 19.3668 20.9831 19.1382C21.0008 18.9213 21 18.6635 21 18.4H20Z",fill:"currentColor"}),e.default.createElement(n.Path,{d:"M10 4V10V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),e.default.createElement(n.Path,{d:"M4 10H10H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),I=a;0&&(module.exports={IconTable});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconTable/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconTable/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 IconTable: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconTable/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 IconTable: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.891 4.54601L19 5L19 5L19.891 4.54601ZM19.454 4.10899L19.908 3.21799L19.908 3.21799L19.454 4.10899ZM4.54601 4.10899L4.09202 3.21799L4.09202 3.21799L4.54601 4.10899ZM4.10899 4.54601L3.21799 4.09202L3.21799 4.09202L4.10899 4.54601ZM4.10899 19.454L3.21799 19.908L3.21799 19.908L4.10899 19.454ZM4.54601 19.891L5 19L5 19L4.54601 19.891ZM19.454 19.891L19 19L19 19L19.454 19.891ZM19.891 19.454L19 19L19 19L19.891 19.454ZM20 5.6H19V18.4H20H21V5.6H20ZM20 5.6H21C21 5.33648 21.0008 5.07869 20.9831 4.86177C20.9644 4.63318 20.9203 4.36344 20.782 4.09202L19.891 4.54601L19 5C18.9707 4.94249 18.9811 4.91972 18.9897 5.02463C18.9992 5.14122 19 5.30347 19 5.6H20ZM19.891 4.54601L20.782 4.09202C20.5903 3.71569 20.2843 3.40973 19.908 3.21799L19.454 4.10899L19 5L19 5L19.891 4.54601ZM18.4 4V5C18.6965 5 18.8588 5.00078 18.9754 5.0103C19.0803 5.01887 19.0575 5.0293 19 5L19.454 4.10899L19.908 3.21799C19.6366 3.07969 19.3668 3.03562 19.1382 3.01695C18.9213 2.99922 18.6635 3 18.4 3V4ZM5.6 4V5H18.4V4V3H5.6V4ZM5.6 4V3C5.33647 3 5.07869 2.99922 4.86177 3.01695C4.63318 3.03562 4.36344 3.07969 4.09202 3.21799L4.54601 4.10899L5 5C4.94249 5.0293 4.91972 5.01887 5.02463 5.0103C5.14122 5.00078 5.30347 5 5.6 5V4ZM4.10899 4.54601L5 5L5 5L4.54601 4.10899L4.09202 3.21799C3.71569 3.40973 3.40973 3.7157 3.21799 4.09202L4.10899 4.54601ZM4 5.6H5C5 5.30347 5.00078 5.14122 5.0103 5.02463C5.01887 4.91972 5.0293 4.94249 5 5L4.10899 4.54601L3.21799 4.09202C3.07969 4.36344 3.03562 4.63318 3.01695 4.86177C2.99922 5.07869 3 5.33647 3 5.6H4ZM4 18.4H5V5.6H4H3V18.4H4ZM4 18.4H3C3 18.6635 2.99922 18.9213 3.01695 19.1382C3.03562 19.3668 3.07969 19.6366 3.21799 19.908L4.10899 19.454L5 19C5.0293 19.0575 5.01887 19.0803 5.0103 18.9754C5.00078 18.8588 5 18.6965 5 18.4H4ZM4.54601 19.891L5 19L5 19L4.10899 19.454L3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782L4.54601 19.891ZM5.6 20V19C5.30347 19 5.14122 18.9992 5.02463 18.9897C4.91972 18.9811 4.94249 18.9707 5 19L4.54601 19.891L4.09202 20.782C4.36344 20.9203 4.63318 20.9644 4.86177 20.9831C5.07869 21.0008 5.33647 21 5.6 21V20ZM18.4 20V19H5.6V20V21H18.4V20ZM18.4 20V21C18.6635 21 18.9213 21.0008 19.1382 20.9831C19.3668 20.9644 19.6366 20.9203 19.908 20.782L19.454 19.891L19 19C19.0575 18.9707 19.0803 18.9811 18.9754 18.9897C18.8588 18.9992 18.6965 19 18.4 19V20ZM19.891 19.454L19 19L19 19L19.454 19.891L19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908L19.891 19.454ZM20 18.4H19C19 18.6965 18.9992 18.8588 18.9897 18.9754C18.9811 19.0803 18.9707 19.0575 19 19L19.891 19.454L20.782 19.908C20.9203 19.6366 20.9644 19.3668 20.9831 19.1382C21.0008 18.9213 21 18.6635 21 18.4H20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10 4V10V20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M4 10H10H20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTable;\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,EAAqB,4BAERC,EAAuCC,GAEhD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,8jFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconTable_exports","__export","IconTable","IconTable_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconTable","props","React","CentralIconBase","IconTable_default"]}
|
package/IconTable/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import r from"react";import n from"react";import{Svg as M}from"react-native-svg";var e=({children:C,size:L=24,...t})=>n.createElement(M,{...t,width:typeof L=="number"?`${L}px`:L,height:typeof L=="number"?`${L}px`:L,viewBox:"0 0 24 24",fill:"none"},C);import{Path as o}from"react-native-svg";var Z=C=>r.createElement(e,{...C},r.createElement(o,{d:"M19.891 4.54601L19 5L19 5L19.891 4.54601ZM19.454 4.10899L19.908 3.21799L19.908 3.21799L19.454 4.10899ZM4.54601 4.10899L4.09202 3.21799L4.09202 3.21799L4.54601 4.10899ZM4.10899 4.54601L3.21799 4.09202L3.21799 4.09202L4.10899 4.54601ZM4.10899 19.454L3.21799 19.908L3.21799 19.908L4.10899 19.454ZM4.54601 19.891L5 19L5 19L4.54601 19.891ZM19.454 19.891L19 19L19 19L19.454 19.891ZM19.891 19.454L19 19L19 19L19.891 19.454ZM20 5.6H19V18.4H20H21V5.6H20ZM20 5.6H21C21 5.33648 21.0008 5.07869 20.9831 4.86177C20.9644 4.63318 20.9203 4.36344 20.782 4.09202L19.891 4.54601L19 5C18.9707 4.94249 18.9811 4.91972 18.9897 5.02463C18.9992 5.14122 19 5.30347 19 5.6H20ZM19.891 4.54601L20.782 4.09202C20.5903 3.71569 20.2843 3.40973 19.908 3.21799L19.454 4.10899L19 5L19 5L19.891 4.54601ZM18.4 4V5C18.6965 5 18.8588 5.00078 18.9754 5.0103C19.0803 5.01887 19.0575 5.0293 19 5L19.454 4.10899L19.908 3.21799C19.6366 3.07969 19.3668 3.03562 19.1382 3.01695C18.9213 2.99922 18.6635 3 18.4 3V4ZM5.6 4V5H18.4V4V3H5.6V4ZM5.6 4V3C5.33647 3 5.07869 2.99922 4.86177 3.01695C4.63318 3.03562 4.36344 3.07969 4.09202 3.21799L4.54601 4.10899L5 5C4.94249 5.0293 4.91972 5.01887 5.02463 5.0103C5.14122 5.00078 5.30347 5 5.6 5V4ZM4.10899 4.54601L5 5L5 5L4.54601 4.10899L4.09202 3.21799C3.71569 3.40973 3.40973 3.7157 3.21799 4.09202L4.10899 4.54601ZM4 5.6H5C5 5.30347 5.00078 5.14122 5.0103 5.02463C5.01887 4.91972 5.0293 4.94249 5 5L4.10899 4.54601L3.21799 4.09202C3.07969 4.36344 3.03562 4.63318 3.01695 4.86177C2.99922 5.07869 3 5.33647 3 5.6H4ZM4 18.4H5V5.6H4H3V18.4H4ZM4 18.4H3C3 18.6635 2.99922 18.9213 3.01695 19.1382C3.03562 19.3668 3.07969 19.6366 3.21799 19.908L4.10899 19.454L5 19C5.0293 19.0575 5.01887 19.0803 5.0103 18.9754C5.00078 18.8588 5 18.6965 5 18.4H4ZM4.54601 19.891L5 19L5 19L4.10899 19.454L3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782L4.54601 19.891ZM5.6 20V19C5.30347 19 5.14122 18.9992 5.02463 18.9897C4.91972 18.9811 4.94249 18.9707 5 19L4.54601 19.891L4.09202 20.782C4.36344 20.9203 4.63318 20.9644 4.86177 20.9831C5.07869 21.0008 5.33647 21 5.6 21V20ZM18.4 20V19H5.6V20V21H18.4V20ZM18.4 20V21C18.6635 21 18.9213 21.0008 19.1382 20.9831C19.3668 20.9644 19.6366 20.9203 19.908 20.782L19.454 19.891L19 19C19.0575 18.9707 19.0803 18.9811 18.9754 18.9897C18.8588 18.9992 18.6965 19 18.4 19V20ZM19.891 19.454L19 19L19 19L19.454 19.891L19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908L19.891 19.454ZM20 18.4H19C19 18.6965 18.9992 18.8588 18.9897 18.9754C18.9811 19.0803 18.9707 19.0575 19 19L19.891 19.454L20.782 19.908C20.9203 19.6366 20.9644 19.3668 20.9831 19.1382C21.0008 18.9213 21 18.6635 21 18.4H20Z",fill:"currentColor"}),r.createElement(o,{d:"M10 4V10V20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),r.createElement(o,{d:"M4 10H10H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"})),u=Z;export{Z as IconTable,u as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconTable/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconTable/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 IconTable: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
1
|
+
{"version":3,"sources":["../src/IconTable/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 IconTable: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19.891 4.54601L19 5L19 5L19.891 4.54601ZM19.454 4.10899L19.908 3.21799L19.908 3.21799L19.454 4.10899ZM4.54601 4.10899L4.09202 3.21799L4.09202 3.21799L4.54601 4.10899ZM4.10899 4.54601L3.21799 4.09202L3.21799 4.09202L4.10899 4.54601ZM4.10899 19.454L3.21799 19.908L3.21799 19.908L4.10899 19.454ZM4.54601 19.891L5 19L5 19L4.54601 19.891ZM19.454 19.891L19 19L19 19L19.454 19.891ZM19.891 19.454L19 19L19 19L19.891 19.454ZM20 5.6H19V18.4H20H21V5.6H20ZM20 5.6H21C21 5.33648 21.0008 5.07869 20.9831 4.86177C20.9644 4.63318 20.9203 4.36344 20.782 4.09202L19.891 4.54601L19 5C18.9707 4.94249 18.9811 4.91972 18.9897 5.02463C18.9992 5.14122 19 5.30347 19 5.6H20ZM19.891 4.54601L20.782 4.09202C20.5903 3.71569 20.2843 3.40973 19.908 3.21799L19.454 4.10899L19 5L19 5L19.891 4.54601ZM18.4 4V5C18.6965 5 18.8588 5.00078 18.9754 5.0103C19.0803 5.01887 19.0575 5.0293 19 5L19.454 4.10899L19.908 3.21799C19.6366 3.07969 19.3668 3.03562 19.1382 3.01695C18.9213 2.99922 18.6635 3 18.4 3V4ZM5.6 4V5H18.4V4V3H5.6V4ZM5.6 4V3C5.33647 3 5.07869 2.99922 4.86177 3.01695C4.63318 3.03562 4.36344 3.07969 4.09202 3.21799L4.54601 4.10899L5 5C4.94249 5.0293 4.91972 5.01887 5.02463 5.0103C5.14122 5.00078 5.30347 5 5.6 5V4ZM4.10899 4.54601L5 5L5 5L4.54601 4.10899L4.09202 3.21799C3.71569 3.40973 3.40973 3.7157 3.21799 4.09202L4.10899 4.54601ZM4 5.6H5C5 5.30347 5.00078 5.14122 5.0103 5.02463C5.01887 4.91972 5.0293 4.94249 5 5L4.10899 4.54601L3.21799 4.09202C3.07969 4.36344 3.03562 4.63318 3.01695 4.86177C2.99922 5.07869 3 5.33647 3 5.6H4ZM4 18.4H5V5.6H4H3V18.4H4ZM4 18.4H3C3 18.6635 2.99922 18.9213 3.01695 19.1382C3.03562 19.3668 3.07969 19.6366 3.21799 19.908L4.10899 19.454L5 19C5.0293 19.0575 5.01887 19.0803 5.0103 18.9754C5.00078 18.8588 5 18.6965 5 18.4H4ZM4.54601 19.891L5 19L5 19L4.10899 19.454L3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782L4.54601 19.891ZM5.6 20V19C5.30347 19 5.14122 18.9992 5.02463 18.9897C4.91972 18.9811 4.94249 18.9707 5 19L4.54601 19.891L4.09202 20.782C4.36344 20.9203 4.63318 20.9644 4.86177 20.9831C5.07869 21.0008 5.33647 21 5.6 21V20ZM18.4 20V19H5.6V20V21H18.4V20ZM18.4 20V21C18.6635 21 18.9213 21.0008 19.1382 20.9831C19.3668 20.9644 19.6366 20.9203 19.908 20.782L19.454 19.891L19 19C19.0575 18.9707 19.0803 18.9811 18.9754 18.9897C18.8588 18.9992 18.6965 19 18.4 19V20ZM19.891 19.454L19 19L19 19L19.454 19.891L19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908L19.891 19.454ZM20 18.4H19C19 18.6965 18.9992 18.8588 18.9897 18.9754C18.9811 19.0803 18.9707 19.0575 19 19L19.891 19.454L20.782 19.908C20.9203 19.6366 20.9644 19.3668 20.9831 19.1382C21.0008 18.9213 21 18.6635 21 18.4H20Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10 4V10V20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M4 10H10H20\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTable;\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,EAAuCC,GAEhDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,8jFACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconTable","props","React","CentralIconBase","IconTable_default"]}
|