@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.286 → 1.1.288
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/IconLayoutAllSides/index.d.ts +4 -0
- package/IconLayoutAllSides/index.js +3 -0
- package/IconLayoutAllSides/index.js.map +11 -0
- package/IconLayoutAllSides/index.mjs +3 -0
- package/IconLayoutAllSides/index.mjs.map +11 -0
- package/IconLayoutBottom/index.js +2 -2
- package/IconLayoutBottom/index.js.map +3 -3
- package/IconLayoutBottom/index.mjs +2 -2
- package/IconLayoutBottom/index.mjs.map +3 -3
- package/IconLayoutBottomFull/index.d.ts +4 -0
- package/IconLayoutBottomFull/index.js +3 -0
- package/IconLayoutBottomFull/index.js.map +11 -0
- package/IconLayoutBottomFull/index.mjs +3 -0
- package/IconLayoutBottomFull/index.mjs.map +11 -0
- package/IconLayoutHalfFull/index.d.ts +4 -0
- package/IconLayoutHalfFull/index.js +3 -0
- package/{IconLayoutHalf → IconLayoutHalfFull}/index.js.map +4 -4
- package/{IconLayoutHalf → IconLayoutHalfFull}/index.mjs +2 -2
- package/{IconLayoutHalf → IconLayoutHalfFull}/index.mjs.map +4 -4
- package/IconLayoutLeft/index.js +2 -2
- package/IconLayoutLeft/index.js.map +3 -3
- package/IconLayoutLeft/index.mjs +2 -2
- package/IconLayoutLeft/index.mjs.map +3 -3
- package/IconLayoutLeftFull/index.d.ts +4 -0
- package/IconLayoutLeftFull/index.js +3 -0
- package/IconLayoutLeftFull/index.js.map +11 -0
- package/IconLayoutLeftFull/index.mjs +3 -0
- package/IconLayoutLeftFull/index.mjs.map +11 -0
- package/IconLayoutLeftRight/index.d.ts +4 -0
- package/IconLayoutLeftRight/index.js +3 -0
- package/IconLayoutLeftRight/index.js.map +11 -0
- package/IconLayoutLeftRight/index.mjs +3 -0
- package/IconLayoutLeftRight/index.mjs.map +11 -0
- package/IconLayoutRight/index.js +2 -2
- package/IconLayoutRight/index.js.map +3 -3
- package/IconLayoutRight/index.mjs +2 -2
- package/IconLayoutRight/index.mjs.map +3 -3
- package/IconLayoutRightFull/index.d.ts +4 -0
- package/IconLayoutRightFull/index.js +3 -0
- package/IconLayoutRightFull/index.js.map +11 -0
- package/IconLayoutRightFull/index.mjs +3 -0
- package/IconLayoutRightFull/index.mjs.map +11 -0
- package/IconLayoutThirdFull/index.d.ts +4 -0
- package/IconLayoutThirdFull/index.js +3 -0
- package/{IconLayoutThird → IconLayoutThirdFull}/index.js.map +4 -4
- package/{IconLayoutThird → IconLayoutThirdFull}/index.mjs +2 -2
- package/{IconLayoutThird → IconLayoutThirdFull}/index.mjs.map +4 -4
- package/IconLayoutTop/index.js +2 -2
- package/IconLayoutTop/index.js.map +3 -3
- package/IconLayoutTop/index.mjs +2 -2
- package/IconLayoutTop/index.mjs.map +3 -3
- package/IconLayoutTopBottom/index.d.ts +4 -0
- package/IconLayoutTopBottom/index.js +3 -0
- package/IconLayoutTopBottom/index.js.map +11 -0
- package/IconLayoutTopBottom/index.mjs +3 -0
- package/IconLayoutTopBottom/index.mjs.map +11 -0
- package/IconLayoutTopFull/index.d.ts +4 -0
- package/IconLayoutTopFull/index.js +3 -0
- package/IconLayoutTopFull/index.js.map +11 -0
- package/IconLayoutTopFull/index.mjs +3 -0
- package/IconLayoutTopFull/index.mjs.map +11 -0
- package/IconQwik/index.d.ts +4 -0
- package/IconQwik/index.js +3 -0
- package/IconQwik/index.js.map +11 -0
- package/IconQwik/index.mjs +3 -0
- package/IconQwik/index.mjs.map +11 -0
- package/README.md +14 -6
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +10 -2
- package/index.js +30 -6
- package/index.mjs +10 -2
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +15 -7
- package/IconLayoutHalf/index.d.ts +0 -4
- package/IconLayoutHalf/index.js +0 -3
- package/IconLayoutThird/index.d.ts +0 -4
- package/IconLayoutThird/index.js +0 -3
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["src/CentralIconBase/index.tsx", "src/
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutThirdFull/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
-
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutThirdFull: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M20.5 3.5H21V3H20.5V3.5ZM20.5 20.5V21H21V20.5H20.5ZM3.5 20.5H3V21H3.5V20.5ZM3.5 3.5V3H3V3.5H3.5ZM20 3.5V20.5H21V3.5H20ZM20.5 20H3.5V21H20.5V20ZM4 20.5V3.5H3V20.5H4ZM3.5 4H20.5V3H3.5V4Z\" fill=\"currentColor\"/><Path d=\"M20.5 15.1699H21V14.1699H20.5V15.1699ZM3.5 14.1699H3V15.1699H3.5V14.1699ZM3.5 15.1699H20.5V14.1699H3.5V15.1699Z\" fill=\"currentColor\"/><Path d=\"M20.5 9.83008H21V8.83008H20.5V9.83008ZM3.5 8.83008H3V9.83008H3.5V8.83008ZM3.5 9.83008H20.5V8.83008H3.5V9.83008Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutThirdFull;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,+ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAgD,CAAC,IAAU,CACtE,OAAO,wBAAohB,EAAphB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,2LAA2L,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,CAAI,GAG9gB",
|
|
9
|
+
"debugId": "77B484A88203B92464756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import e from"react";import{Svg as
|
|
1
|
+
import e from"react";import{Svg as l}from"react-native-svg";var H=({children:t,size:r=24,...V})=>{return e.createElement(l,{...V,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t)};import o from"react";import{Path as n}from"react-native-svg";var p=(t)=>{return o.createElement(H,{...t},o.createElement(n,{d:"M20.5 3.5H21V3H20.5V3.5ZM20.5 20.5V21H21V20.5H20.5ZM3.5 20.5H3V21H3.5V20.5ZM3.5 3.5V3H3V3.5H3.5ZM20 3.5V20.5H21V3.5H20ZM20.5 20H3.5V21H20.5V20ZM4 20.5V3.5H3V20.5H4ZM3.5 4H20.5V3H3.5V4Z",fill:"currentColor"}),o.createElement(n,{d:"M20.5 15.1699H21V14.1699H20.5V15.1699ZM3.5 14.1699H3V15.1699H3.5V14.1699ZM3.5 15.1699H20.5V14.1699H3.5V15.1699Z",fill:"currentColor"}),o.createElement(n,{d:"M20.5 9.83008H21V8.83008H20.5V9.83008ZM3.5 8.83008H3V9.83008H3.5V8.83008ZM3.5 9.83008H20.5V8.83008H3.5V9.83008Z",fill:"currentColor"}))},B=p;export{B as default,p as IconLayoutThirdFull};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=D88D7F00BCAACBE164756E2164756E21
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["src/CentralIconBase/index.tsx", "src/
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutThirdFull/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
-
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutThirdFull: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M20.5 3.5H21V3H20.5V3.5ZM20.5 20.5V21H21V20.5H20.5ZM3.5 20.5H3V21H3.5V20.5ZM3.5 3.5V3H3V3.5H3.5ZM20 3.5V20.5H21V3.5H20ZM20.5 20H3.5V21H20.5V20ZM4 20.5V3.5H3V20.5H4ZM3.5 4H20.5V3H3.5V4Z\" fill=\"currentColor\"/><Path d=\"M20.5 15.1699H21V14.1699H20.5V15.1699ZM3.5 14.1699H3V15.1699H3.5V14.1699ZM3.5 15.1699H20.5V14.1699H3.5V15.1699Z\" fill=\"currentColor\"/><Path d=\"M20.5 9.83008H21V8.83008H20.5V9.83008ZM3.5 8.83008H3V9.83008H3.5V8.83008ZM3.5 9.83008H20.5V8.83008H3.5V9.83008Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutThirdFull;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAohB,EAAphB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,2LAA2L,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,CAAI,GAG9gB",
|
|
9
|
+
"debugId": "D88D7F00BCAACBE164756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconLayoutTop/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var d=Object.create;var{getPrototypeOf:h,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:F}=Object,B=Object.prototype.hasOwnProperty;function I(r){return this[r]}var L,S,x=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var l=o?L??=new WeakMap:S??=new WeakMap,c=l.get(r);if(c)return c}t=r!=null?d(h(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let s of u(r))if(!B.call(p,s))n(p,s,{get:I.bind(r,s),enumerable:!0});if(e)l.set(r,p);return p},P=(r)=>{var o=(f??=new WeakMap).get(r),t;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of u(r))if(!B.call(o,e))n(o,e,{get:I.bind(r,e),enumerable:!(t=F(r,e))||t.enumerable})}return f.set(r,o),o},f;var b=(r)=>r;function k(r,o){this[r]=b.bind(null,o)}var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:k.bind(o,t)})};var w={};g(w,{CentralIconBase:()=>m});module.exports=P(w);var i=x(require("react")),v=require("react-native-svg"),m=({children:r,size:o=24,...t})=>{return i.default.createElement(v.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 M={};g(M,{default:()=>$,IconLayoutTop:()=>y});module.exports=P(M);var a=x(require("react"));var C=require("react-native-svg"),y=(r)=>{return a.default.createElement(m,{...r},a.default.createElement(C.Path,{d:"M3.5 20.5L3.5 6.5L20.5 6.5V20.5L3.5 20.5Z",stroke:"currentColor"}),a.default.createElement(C.Path,{d:"M3 3.5H21",stroke:"currentColor"}))},$=y;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=84F741AC271A133E64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTop/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
-
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutTop: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutTop: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 20.5L3.5 6.5L20.5 6.5V20.5L3.5 20.5Z\" stroke=\"currentColor\"/><Path d=\"M3 3.5H21\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTop;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,yECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA0C,CAAC,IAAU,CAChE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,yECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA0C,CAAC,IAAU,CAChE,OAAO,wBAAoJ,EAApJ,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,4CAA4C,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAc,CAAI,GAG9I",
|
|
9
|
+
"debugId": "84F741AC271A133E64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconLayoutTop/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import a from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...p})=>{return a.createElement(s,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import t from"react";import{Path as n}from"react-native-svg";var m=(o)=>{return t.createElement(e,{...o},t.createElement(n,{d:"M3.5 20.5L3.5 6.5L20.5 6.5V20.5L3.5 20.5Z",stroke:"currentColor"}),t.createElement(n,{d:"M3 3.5H21",stroke:"currentColor"}))},i=m;export{i as default,m as IconLayoutTop};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=702376754B5D539A64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTop/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
-
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutTop: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutTop: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3.5 20.5L3.5 6.5L20.5 6.5V20.5L3.5 20.5Z\" stroke=\"currentColor\"/><Path d=\"M3 3.5H21\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTop;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA0C,CAAC,IAAU,CAChE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAoJ,EAApJ,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,4CAA4C,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAc,CAAI,GAG9I",
|
|
9
|
+
"debugId": "702376754B5D539A64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var y=Object.create;var{getPrototypeOf:h,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:F}=Object,B=Object.prototype.hasOwnProperty;function I(o){return this[o]}var S,b,x=(o,r,t)=>{var e=o!=null&&typeof o==="object";if(e){var l=r?S??=new WeakMap:b??=new WeakMap,c=l.get(o);if(c)return c}t=o!=null?y(h(o)):{};let s=r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t;for(let m of f(o))if(!B.call(s,m))n(s,m,{get:I.bind(o,m),enumerable:!0});if(e)l.set(o,s);return s},P=(o)=>{var r=(u??=new WeakMap).get(o),t;if(r)return r;if(r=n({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of f(o))if(!B.call(r,e))n(r,e,{get:I.bind(o,e),enumerable:!(t=F(o,e))||t.enumerable})}return u.set(o,r),r},u;var k=(o)=>o;function L(o,r){this[o]=k.bind(null,r)}var g=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0,configurable:!0,set:L.bind(r,t)})};var M={};g(M,{CentralIconBase:()=>C});module.exports=P(M);var i=x(require("react")),d=require("react-native-svg"),C=({children:o,size:r=24,...t})=>{return i.default.createElement(d.Svg,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var w={};g(w,{default:()=>H,IconLayoutTopBottom:()=>v});module.exports=P(w);var p=x(require("react"));var a=require("react-native-svg"),v=(o)=>{return p.default.createElement(C,{...o},p.default.createElement(a.Path,{d:"M20.5 6.5V17.5L3.5 17.5V6.5L20.5 6.5Z",stroke:"currentColor"}),p.default.createElement(a.Path,{d:"M21 20.5H3",stroke:"currentColor"}),p.default.createElement(a.Path,{d:"M21 3.5H3",stroke:"currentColor"}))},H=v;
|
|
2
|
+
|
|
3
|
+
//# debugId=D970AD644458F99164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopBottom/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutTopBottom: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M20.5 6.5V17.5L3.5 17.5V6.5L20.5 6.5Z\" stroke=\"currentColor\"/><Path d=\"M21 20.5H3\" stroke=\"currentColor\"/><Path d=\"M21 3.5H3\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopBottom;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,+ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAgD,CAAC,IAAU,CACtE,OAAO,wBAA4L,EAA5L,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,wCAAwC,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAc,CAAI,GAGtL",
|
|
9
|
+
"debugId": "D970AD644458F99164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import s from"react";import{Svg as a}from"react-native-svg";var n=({children:t,size:o=24,...p})=>{return s.createElement(a,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t)};import r from"react";import{Path as e}from"react-native-svg";var m=(t)=>{return r.createElement(n,{...t},r.createElement(e,{d:"M20.5 6.5V17.5L3.5 17.5V6.5L20.5 6.5Z",stroke:"currentColor"}),r.createElement(e,{d:"M21 20.5H3",stroke:"currentColor"}),r.createElement(e,{d:"M21 3.5H3",stroke:"currentColor"}))},i=m;export{i as default,m as IconLayoutTopBottom};
|
|
2
|
+
|
|
3
|
+
//# debugId=2D495CBE1B6D39B464756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopBottom/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutTopBottom: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M20.5 6.5V17.5L3.5 17.5V6.5L20.5 6.5Z\" stroke=\"currentColor\"/><Path d=\"M21 20.5H3\" stroke=\"currentColor\"/><Path d=\"M21 3.5H3\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopBottom;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA4L,EAA5L,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,wCAAwC,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,YAAY,OAAO,eAAc,CAAI,GAGtL",
|
|
9
|
+
"debugId": "2D495CBE1B6D39B464756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var P=Object.create;var{getPrototypeOf:g,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:v}=Object,M=Object.prototype.hasOwnProperty;function Z(r){return this[r]}var y,F,c=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var m=o?y??=new WeakMap:F??=new WeakMap,C=m.get(r);if(C)return C}t=r!=null?P(g(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let V of f(r))if(!M.call(p,V))n(p,V,{get:Z.bind(r,V),enumerable:!0});if(e)m.set(r,p);return p},u=(r)=>{var o=(s??=new WeakMap).get(r),t;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!M.call(o,e))n(o,e,{get:Z.bind(r,e),enumerable:!(t=v(r,e))||t.enumerable})}return s.set(r,o),o},s;var d=(r)=>r;function h(r,o){this[r]=d.bind(null,o)}var i=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:h.bind(o,t)})};var S={};i(S,{CentralIconBase:()=>l});module.exports=u(S);var B=c(require("react")),I=require("react-native-svg"),l=({children:r,size:o=24,...t})=>{return B.default.createElement(I.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 b={};i(b,{default:()=>w,IconLayoutTopFull:()=>x});module.exports=u(b);var H=c(require("react"));var a=require("react-native-svg"),x=(r)=>{return H.default.createElement(l,{...r},H.default.createElement(a.Path,{d:"M20.5 3.5H21V3H20.5V3.5ZM20.5 20.5V21H21V20.5H20.5ZM3.5 20.5H3V21H3.5V20.5ZM3.5 3.5V3H3V3.5H3.5ZM20 3.5V20.5H21V3.5H20ZM20.5 20H3.5V21H20.5V20ZM4 20.5V3.5H3V20.5H4ZM3.5 4H20.5V3H3.5V4Z",fill:"currentColor"}),H.default.createElement(a.Path,{d:"M20.5 10H21V9H20.5V10ZM3.5 9H3V10H3.5V9ZM3.5 10H20.5V9H3.5V10Z",fill:"currentColor"}))},w=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=2105CFA7A259FEC664756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopFull/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutTopFull: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M20.5 3.5H21V3H20.5V3.5ZM20.5 20.5V21H21V20.5H20.5ZM3.5 20.5H3V21H3.5V20.5ZM3.5 3.5V3H3V3.5H3.5ZM20 3.5V20.5H21V3.5H20ZM20.5 20H3.5V21H20.5V20ZM4 20.5V3.5H3V20.5H4ZM3.5 4H20.5V3H3.5V4Z\" fill=\"currentColor\"/><Path d=\"M20.5 10H21V9H20.5V10ZM3.5 9H3V10H3.5V9ZM3.5 10H20.5V9H3.5V10Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopFull;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,6ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA8C,CAAC,IAAU,CACpE,OAAO,wBAAoV,EAApV,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,2LAA2L,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iEAAiE,KAAK,eAAc,CAAI,GAG9U",
|
|
9
|
+
"debugId": "2105CFA7A259FEC664756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import H from"react";import{Svg as V}from"react-native-svg";var e=({children:o,size:r=24,...p})=>{return H.createElement(V,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import t from"react";import{Path as n}from"react-native-svg";var l=(o)=>{return t.createElement(e,{...o},t.createElement(n,{d:"M20.5 3.5H21V3H20.5V3.5ZM20.5 20.5V21H21V20.5H20.5ZM3.5 20.5H3V21H3.5V20.5ZM3.5 3.5V3H3V3.5H3.5ZM20 3.5V20.5H21V3.5H20ZM20.5 20H3.5V21H20.5V20ZM4 20.5V3.5H3V20.5H4ZM3.5 4H20.5V3H3.5V4Z",fill:"currentColor"}),t.createElement(n,{d:"M20.5 10H21V9H20.5V10ZM3.5 9H3V10H3.5V9ZM3.5 10H20.5V9H3.5V10Z",fill:"currentColor"}))},B=l;export{B as default,l as IconLayoutTopFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=CFCB0B7D968A7EB864756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopFull/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutTopFull: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M20.5 3.5H21V3H20.5V3.5ZM20.5 20.5V21H21V20.5H20.5ZM3.5 20.5H3V21H3.5V20.5ZM3.5 3.5V3H3V3.5H3.5ZM20 3.5V20.5H21V3.5H20ZM20.5 20H3.5V21H20.5V20ZM4 20.5V3.5H3V20.5H4ZM3.5 4H20.5V3H3.5V4Z\" fill=\"currentColor\"/><Path d=\"M20.5 10H21V9H20.5V10ZM3.5 9H3V10H3.5V9ZM3.5 10H20.5V9H3.5V10Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopFull;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAoV,EAApV,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,2LAA2L,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iEAAiE,KAAK,eAAc,CAAI,GAG9U",
|
|
9
|
+
"debugId": "CFCB0B7D968A7EB864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:h,defineProperty:n,getOwnPropertyNames:c,getOwnPropertyDescriptor:y}=Object,f=Object.prototype.hasOwnProperty;function i(o){return this[o]}var F,M,u=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var a=r?F??=new WeakMap:M??=new WeakMap,m=a.get(o);if(m)return m}e=o!=null?g(h(o)):{};let L=r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e;for(let p of c(o))if(!f.call(L,p))n(L,p,{get:i.bind(o,p),enumerable:!0});if(t)a.set(o,L);return L},B=(o)=>{var r=(s??=new WeakMap).get(o),e;if(r)return r;if(r=n({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of c(o))if(!f.call(r,t))n(r,t,{get:i.bind(o,t),enumerable:!(e=y(o,t))||e.enumerable})}return s.set(o,r),r},s;var S=(o)=>o;function Z(o,r){this[o]=S.bind(null,r)}var I=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0,configurable:!0,set:Z.bind(r,e)})};var b={};I(b,{CentralIconBase:()=>C});module.exports=B(b);var d=u(require("react")),v=require("react-native-svg"),C=({children:o,size:r=24,...e})=>{return d.default.createElement(v.Svg,{...e,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var w={};I(w,{default:()=>V,IconQwik:()=>P});module.exports=B(w);var l=u(require("react"));var x=require("react-native-svg"),P=(o)=>{return l.default.createElement(C,{...o},l.default.createElement(x.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.4306 2.50008C16.4342 2.4923 17.3597 3.02477 17.8537 3.88608L19.8295 7.30921L19.8453 7.29339L19.9941 7.55943L20.3708 8.24126L21.0927 9.57238C21.6102 10.5044 21.5237 11.6479 20.8964 12.5016C20.865 12.5486 20.8258 12.596 20.7866 12.643L20.6843 12.7602L17.4854 18.6734L19.3197 22.2835C19.4032 22.4275 19.2169 22.5626 19.0909 22.4649L19.129 22.5031L10.2522 19.8948L8.62896 19.9106C7.64868 19.9184 6.73839 19.4175 6.23649 18.5795L2.95848 13.1443C2.40707 12.2176 2.45151 11.0092 3.03847 10.1156L6.16115 3.92608C6.65522 3.08805 7.54919 2.57117 8.52943 2.56334L13.6976 2.54752L15.4306 2.50008ZM15.4827 18.9395L15.4845 18.9385L15.4827 18.9162V18.9395ZM15.4845 18.9385L15.4929 18.9376V18.9237L15.4845 18.9385ZM8.62152 3.20331L9.72659 9.54075L7.84481 11.3584L15.4799 18.8976L14.7013 12.6039L16.011 11.2802L8.63919 3.18192L8.62152 3.20331Z",fill:"currentColor"}))},V=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=5DA13A27DFA942F064756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconQwik/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconQwik: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.4306 2.50008C16.4342 2.4923 17.3597 3.02477 17.8537 3.88608L19.8295 7.30921L19.8453 7.29339L19.9941 7.55943L20.3708 8.24126L21.0927 9.57238C21.6102 10.5044 21.5237 11.6479 20.8964 12.5016C20.865 12.5486 20.8258 12.596 20.7866 12.643L20.6843 12.7602L17.4854 18.6734L19.3197 22.2835C19.4032 22.4275 19.2169 22.5626 19.0909 22.4649L19.129 22.5031L10.2522 19.8948L8.62896 19.9106C7.64868 19.9184 6.73839 19.4175 6.23649 18.5795L2.95848 13.1443C2.40707 12.2176 2.45151 11.0092 3.03847 10.1156L6.16115 3.92608C6.65522 3.08805 7.54919 2.57117 8.52943 2.56334L13.6976 2.54752L15.4306 2.50008ZM15.4827 18.9395L15.4845 18.9385L15.4827 18.9162V18.9395ZM15.4845 18.9385L15.4929 18.9376V18.9237L15.4845 18.9385ZM8.62152 3.20331L9.72659 9.54075L7.84481 11.3584L15.4799 18.8976L14.7013 12.6039L16.011 11.2802L8.63919 3.18192L8.62152 3.20331Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconQwik;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,oECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAqC,CAAC,IAAU,CAC3D,OAAO,wBAAk6B,EAAl6B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,i0BAAi0B,KAAK,eAAc,CAAI,GAG55B",
|
|
9
|
+
"debugId": "5DA13A27DFA942F064756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import L from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...n})=>{return L.createElement(p,{...n,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import t from"react";import{Path as C}from"react-native-svg";var l=(r)=>{return t.createElement(e,{...r},t.createElement(C,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.4306 2.50008C16.4342 2.4923 17.3597 3.02477 17.8537 3.88608L19.8295 7.30921L19.8453 7.29339L19.9941 7.55943L20.3708 8.24126L21.0927 9.57238C21.6102 10.5044 21.5237 11.6479 20.8964 12.5016C20.865 12.5486 20.8258 12.596 20.7866 12.643L20.6843 12.7602L17.4854 18.6734L19.3197 22.2835C19.4032 22.4275 19.2169 22.5626 19.0909 22.4649L19.129 22.5031L10.2522 19.8948L8.62896 19.9106C7.64868 19.9184 6.73839 19.4175 6.23649 18.5795L2.95848 13.1443C2.40707 12.2176 2.45151 11.0092 3.03847 10.1156L6.16115 3.92608C6.65522 3.08805 7.54919 2.57117 8.52943 2.56334L13.6976 2.54752L15.4306 2.50008ZM15.4827 18.9395L15.4845 18.9385L15.4827 18.9162V18.9395ZM15.4845 18.9385L15.4929 18.9376V18.9237L15.4845 18.9385ZM8.62152 3.20331L9.72659 9.54075L7.84481 11.3584L15.4799 18.8976L14.7013 12.6039L16.011 11.2802L8.63919 3.18192L8.62152 3.20331Z",fill:"currentColor"}))},v=l;export{v as default,l as IconQwik};
|
|
2
|
+
|
|
3
|
+
//# debugId=9F2A3986E7DA85F464756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconQwik/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconQwik: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.4306 2.50008C16.4342 2.4923 17.3597 3.02477 17.8537 3.88608L19.8295 7.30921L19.8453 7.29339L19.9941 7.55943L20.3708 8.24126L21.0927 9.57238C21.6102 10.5044 21.5237 11.6479 20.8964 12.5016C20.865 12.5486 20.8258 12.596 20.7866 12.643L20.6843 12.7602L17.4854 18.6734L19.3197 22.2835C19.4032 22.4275 19.2169 22.5626 19.0909 22.4649L19.129 22.5031L10.2522 19.8948L8.62896 19.9106C7.64868 19.9184 6.73839 19.4175 6.23649 18.5795L2.95848 13.1443C2.40707 12.2176 2.45151 11.0092 3.03847 10.1156L6.16115 3.92608C6.65522 3.08805 7.54919 2.57117 8.52943 2.56334L13.6976 2.54752L15.4306 2.50008ZM15.4827 18.9395L15.4845 18.9385L15.4827 18.9162V18.9395ZM15.4845 18.9385L15.4929 18.9376V18.9237L15.4845 18.9385ZM8.62152 3.20331L9.72659 9.54075L7.84481 11.3584L15.4799 18.8976L14.7013 12.6039L16.011 11.2802L8.63919 3.18192L8.62152 3.20331Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconQwik;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAqC,CAAC,IAAU,CAC3D,OAAO,gBAAk6B,EAAl6B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,i0BAAi0B,KAAK,eAAc,CAAI,GAG55B",
|
|
9
|
+
"debugId": "9F2A3986E7DA85F464756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/README.md
CHANGED
|
@@ -1321,12 +1321,12 @@ Below is a complete list of available icons:
|
|
|
1321
1321
|
- IconLayoutTopbar
|
|
1322
1322
|
- IconLayoutDashboard
|
|
1323
1323
|
- IconLayoutWindow
|
|
1324
|
-
-
|
|
1325
|
-
-
|
|
1326
|
-
-
|
|
1327
|
-
-
|
|
1328
|
-
-
|
|
1329
|
-
-
|
|
1324
|
+
- IconLayoutTopFull
|
|
1325
|
+
- IconLayoutBottomFull
|
|
1326
|
+
- IconLayoutRightFull
|
|
1327
|
+
- IconLayoutLeftFull
|
|
1328
|
+
- IconLayoutHalfFull
|
|
1329
|
+
- IconLayoutThirdFull
|
|
1330
1330
|
- IconLayoutGrid1
|
|
1331
1331
|
- IconLayoutGrid2
|
|
1332
1332
|
- IconLayoutColumn
|
|
@@ -1376,6 +1376,13 @@ Below is a complete list of available icons:
|
|
|
1376
1376
|
- IconLayoutAlignTopBottom
|
|
1377
1377
|
- IconGrid
|
|
1378
1378
|
- IconGridBox
|
|
1379
|
+
- IconLayoutAllSides
|
|
1380
|
+
- IconLayoutLeftRight
|
|
1381
|
+
- IconLayoutTopBottom
|
|
1382
|
+
- IconLayoutRight
|
|
1383
|
+
- IconLayoutLeft
|
|
1384
|
+
- IconLayoutTop
|
|
1385
|
+
- IconLayoutBottom
|
|
1379
1386
|
|
|
1380
1387
|
### Location
|
|
1381
1388
|
|
|
@@ -1842,6 +1849,7 @@ Below is a complete list of available icons:
|
|
|
1842
1849
|
- IconBitcoinCircle
|
|
1843
1850
|
- IconSwift
|
|
1844
1851
|
- IconSiriGen2
|
|
1852
|
+
- IconQwik
|
|
1845
1853
|
|
|
1846
1854
|
### Sound & Music
|
|
1847
1855
|
|