@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.259 → 1.1.261
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/IconExtendImage/index.d.ts +4 -0
- package/IconExtendImage/index.js +3 -0
- package/IconExtendImage/index.js.map +11 -0
- package/IconExtendImage/index.mjs +3 -0
- package/IconExtendImage/index.mjs.map +11 -0
- package/IconReframe/index.d.ts +4 -0
- package/IconReframe/index.js +3 -0
- package/IconReframe/index.js.map +11 -0
- package/IconReframe/index.mjs +3 -0
- package/IconReframe/index.mjs.map +11 -0
- package/IconTorch/index.d.ts +4 -0
- package/IconTorch/index.js +3 -0
- package/IconTorch/index.js.map +11 -0
- package/IconTorch/index.mjs +3 -0
- package/IconTorch/index.mjs.map +11 -0
- package/README.md +3 -0
- 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 +3 -0
- package/index.js +9 -0
- package/index.mjs +3 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +4 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var M=Object.create;var{getPrototypeOf:h,defineProperty:s,getOwnPropertyNames:f,getOwnPropertyDescriptor:P}=Object,k=Object.prototype.hasOwnProperty;function x(r){return this[r]}var v,y,I=(r,o,t)=>{var p=r!=null&&typeof r==="object";if(p){var m=o?v??=new WeakMap:y??=new WeakMap,d=m.get(r);if(d)return d}t=r!=null?M(h(r)):{};let C=o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t;for(let l of f(r))if(!k.call(C,l))s(C,l,{get:x.bind(r,l),enumerable:!0});if(p)m.set(r,C);return C},a=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=s({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var p of f(r))if(!k.call(o,p))s(o,p,{get:x.bind(r,p),enumerable:!(t=P(r,p))||t.enumerable})}return c.set(r,o),o},c;var F=(r)=>r;function S(r,o){this[r]=F.bind(null,o)}var g=(r,o)=>{for(var t in o)s(r,t,{get:o[t],enumerable:!0,configurable:!0,set:S.bind(o,t)})};var b={};g(b,{CentralIconBase:()=>u});module.exports=a(b);var i=I(require("react")),B=require("react-native-svg"),u=({children:r,size:o=24,...t})=>{return i.default.createElement(B.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 w={};g(w,{default:()=>$,IconExtendImage:()=>L});module.exports=a(w);var e=I(require("react"));var n=require("react-native-svg"),L=(r)=>{return e.default.createElement(u,{...r},e.default.createElement(n.Path,{d:"M8 3L3 8",stroke:"currentColor"}),e.default.createElement(n.Path,{d:"M6.5 17.5L3 21",stroke:"currentColor"}),e.default.createElement(n.Path,{d:"M21 3L17.5 6.5",stroke:"currentColor"}),e.default.createElement(n.Path,{d:"M14 3L10.5 6.5",stroke:"currentColor"}),e.default.createElement(n.Path,{d:"M6.5 10.5L3 14",stroke:"currentColor"}),e.default.createElement(n.Path,{d:"M21 10L17.5 13.5",stroke:"currentColor"}),e.default.createElement(n.Path,{d:"M13.5 17.5L10 21",stroke:"currentColor"}),e.default.createElement(n.Path,{d:"M21 16L16 21",stroke:"currentColor"}),e.default.createElement(n.Rect,{x:"6.5",y:"6.5",width:"11",height:"11",stroke:"currentColor"}))},$=L;
|
|
2
|
+
|
|
3
|
+
//# debugId=31C4BA61F9C7A36064756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconExtendImage/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, Rect } from \"react-native-svg\";\n\nexport const IconExtendImage: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8 3L3 8\" stroke=\"currentColor\"/><Path d=\"M6.5 17.5L3 21\" stroke=\"currentColor\"/><Path d=\"M21 3L17.5 6.5\" stroke=\"currentColor\"/><Path d=\"M14 3L10.5 6.5\" stroke=\"currentColor\"/><Path d=\"M6.5 10.5L3 14\" stroke=\"currentColor\"/><Path d=\"M21 10L17.5 13.5\" stroke=\"currentColor\"/><Path d=\"M13.5 17.5L10 21\" stroke=\"currentColor\"/><Path d=\"M21 16L16 21\" stroke=\"currentColor\"/><Rect x=\"6.5\" y=\"6.5\" width=\"11\" height=\"11\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconExtendImage;\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,2ECvBoB,IAA1B,sBAE2B,IAA3B,8BAEa,EAA4C,CAAC,IAAU,CAClE,OAAO,wBAA8d,EAA9d,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,MAAM,EAAE,MAAM,MAAM,KAAK,OAAO,KAAK,OAAO,eAAc,CAAI,GAGxd",
|
|
9
|
+
"debugId": "31C4BA61F9C7A36064756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import s from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:t=24,...p})=>{return s.createElement(C,{...p,width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none"},e)};import r from"react";import{Path as o,Rect as l}from"react-native-svg";var u=(e)=>{return r.createElement(n,{...e},r.createElement(o,{d:"M8 3L3 8",stroke:"currentColor"}),r.createElement(o,{d:"M6.5 17.5L3 21",stroke:"currentColor"}),r.createElement(o,{d:"M21 3L17.5 6.5",stroke:"currentColor"}),r.createElement(o,{d:"M14 3L10.5 6.5",stroke:"currentColor"}),r.createElement(o,{d:"M6.5 10.5L3 14",stroke:"currentColor"}),r.createElement(o,{d:"M21 10L17.5 13.5",stroke:"currentColor"}),r.createElement(o,{d:"M13.5 17.5L10 21",stroke:"currentColor"}),r.createElement(o,{d:"M21 16L16 21",stroke:"currentColor"}),r.createElement(l,{x:"6.5",y:"6.5",width:"11",height:"11",stroke:"currentColor"}))},B=u;export{B as default,u as IconExtendImage};
|
|
2
|
+
|
|
3
|
+
//# debugId=524E4CE8B5B80F1564756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconExtendImage/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, Rect } from \"react-native-svg\";\n\nexport const IconExtendImage: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8 3L3 8\" stroke=\"currentColor\"/><Path d=\"M6.5 17.5L3 21\" stroke=\"currentColor\"/><Path d=\"M21 3L17.5 6.5\" stroke=\"currentColor\"/><Path d=\"M14 3L10.5 6.5\" stroke=\"currentColor\"/><Path d=\"M6.5 10.5L3 14\" stroke=\"currentColor\"/><Path d=\"M21 10L17.5 13.5\" stroke=\"currentColor\"/><Path d=\"M13.5 17.5L10 21\" stroke=\"currentColor\"/><Path d=\"M21 16L16 21\" stroke=\"currentColor\"/><Rect x=\"6.5\" y=\"6.5\" width=\"11\" height=\"11\" stroke=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconExtendImage;\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,UAAM,yBAER,IAAM,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAA8d,EAA9d,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mBAAmB,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,eAAe,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,MAAM,EAAE,MAAM,MAAM,KAAK,OAAO,KAAK,OAAO,eAAc,CAAI,GAGxd",
|
|
9
|
+
"debugId": "524E4CE8B5B80F1564756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var v=Object.create;var{getPrototypeOf:d,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:h}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var k,y,I=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var c=o?k??=new WeakMap:y??=new WeakMap,l=c.get(r);if(l)return l}e=r!=null?v(d(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let s of u(r))if(!i.call(p,s))n(p,s,{get:B.bind(r,s),enumerable:!0});if(t)c.set(r,p);return p},L=(r)=>{var o=(f??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!i.call(o,t))n(o,t,{get:B.bind(r,t),enumerable:!(e=h(r,t))||e.enumerable})}return f.set(r,o),o},f;var F=(r)=>r;function S(r,o){this[r]=F.bind(null,o)}var x=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var b={};x(b,{CentralIconBase:()=>m});module.exports=L(b);var P=I(require("react")),g=require("react-native-svg"),m=({children:r,size:o=24,...e})=>{return P.default.createElement(g.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 V={};x(V,{default:()=>q,IconReframe:()=>M});module.exports=L(V);var a=I(require("react"));var C=require("react-native-svg"),M=(r)=>{return a.default.createElement(m,{...r},a.default.createElement(C.Path,{d:"M7.25 4.09739L12 1.35498L16.75 4.09739M21.5 12.3246V17.8095L16.75 20.5519M7.25 20.5519L2.5 17.8095V12.3246",stroke:"currentColor",strokeLinecap:"square"}),a.default.createElement(C.Path,{d:"M12 2V12M12 12L3 17.5037M12 12L20.9939 17.5",stroke:"currentColor",strokeLinecap:"square"}))},q=M;
|
|
2
|
+
|
|
3
|
+
//# debugId=B8664AC745C444A064756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconReframe/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 IconReframe: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M7.25 4.09739L12 1.35498L16.75 4.09739M21.5 12.3246V17.8095L16.75 20.5519M7.25 20.5519L2.5 17.8095V12.3246\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M12 2V12M12 12L3 17.5037M12 12L20.9939 17.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconReframe;\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,uECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAwC,CAAC,IAAU,CAC9D,OAAO,wBAAqS,EAArS,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,6GAA6G,OAAO,eAAe,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,8CAA8C,OAAO,eAAe,cAAc,SAAQ,CAAI,GAG/R",
|
|
9
|
+
"debugId": "B8664AC745C444A064756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import a from"react";import{Svg as s}from"react-native-svg";var t=({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 e from"react";import{Path as n}from"react-native-svg";var m=(o)=>{return e.createElement(t,{...o},e.createElement(n,{d:"M7.25 4.09739L12 1.35498L16.75 4.09739M21.5 12.3246V17.8095L16.75 20.5519M7.25 20.5519L2.5 17.8095V12.3246",stroke:"currentColor",strokeLinecap:"square"}),e.createElement(n,{d:"M12 2V12M12 12L3 17.5037M12 12L20.9939 17.5",stroke:"currentColor",strokeLinecap:"square"}))},P=m;export{P as default,m as IconReframe};
|
|
2
|
+
|
|
3
|
+
//# debugId=59E23A5F75B4C2C564756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconReframe/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 IconReframe: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M7.25 4.09739L12 1.35498L16.75 4.09739M21.5 12.3246V17.8095L16.75 20.5519M7.25 20.5519L2.5 17.8095V12.3246\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M12 2V12M12 12L3 17.5037M12 12L20.9939 17.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconReframe;\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,EAAwC,CAAC,IAAU,CAC9D,OAAO,gBAAqS,EAArS,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,6GAA6G,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,8CAA8C,OAAO,eAAe,cAAc,SAAQ,CAAI,GAG/R",
|
|
9
|
+
"debugId": "59E23A5F75B4C2C564756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:v,defineProperty:l,getOwnPropertyNames:f,getOwnPropertyDescriptor:k}=Object,c=Object.prototype.hasOwnProperty;function u(r){return this[r]}var w,y,L=(r,o,t)=>{var p=r!=null&&typeof r==="object";if(p){var h=o?w??=new WeakMap:y??=new WeakMap,m=h.get(r);if(m)return m}t=r!=null?x(v(r)):{};let s=o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t;for(let i of f(r))if(!c.call(s,i))l(s,i,{get:u.bind(r,i),enumerable:!0});if(p)h.set(r,s);return s},P=(r)=>{var o=(a??=new WeakMap).get(r),t;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var p of f(r))if(!c.call(o,p))l(o,p,{get:u.bind(r,p),enumerable:!(t=k(r,p))||t.enumerable})}return a.set(r,o),o},a;var F=(r)=>r;function S(r,o){this[r]=F.bind(null,o)}var d=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0,configurable:!0,set:S.bind(o,t)})};var _={};d(_,{CentralIconBase:()=>C});module.exports=P(_);var B=L(require("react")),I=require("react-native-svg"),C=({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={};d(b,{default:()=>M,IconTorch:()=>g});module.exports=P(b);var n=L(require("react"));var e=require("react-native-svg"),g=(r)=>{return n.default.createElement(C,{...r},n.default.createElement(e.G,{ClipPath:"url(#clip0_15368_27803)"},n.default.createElement(e.Path,{d:"M10.25 5.25L18.75 13.75",stroke:"currentColor"}),n.default.createElement(e.Path,{d:"M1.5 16.725L8.85 9.375L9.375 5.7L13.575 1.5L22.5 10.425L18.3 14.625L14.625 15.15L7.275 22.5L1.5 16.725Z",stroke:"currentColor",strokeWidth:"1.05"}),n.default.createElement(e.Path,{d:"M9.5 14.5L12 12",stroke:"currentColor"})),n.default.createElement(e.Defs,null,n.default.createElement(e.ClipPath,{id:"clip0_15368_27803"},n.default.createElement(e.Rect,{width:"24",height:"24",fill:"white"}))))},M=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=EF196DEAA231B45164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconTorch/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 { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconTorch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><G ClipPath=\"url(#clip0_15368_27803)\"><Path d=\"M10.25 5.25L18.75 13.75\" stroke=\"currentColor\"/><Path d=\"M1.5 16.725L8.85 9.375L9.375 5.7L13.575 1.5L22.5 10.425L18.3 14.625L14.625 15.15L7.275 22.5L1.5 16.725Z\" stroke=\"currentColor\" strokeWidth=\"1.05\"/><Path d=\"M9.5 14.5L12 12\" stroke=\"currentColor\"/></G><Defs><ClipPath id=\"clip0_15368_27803\"><Rect width=\"24\" height=\"24\" fill=\"white\"/></ClipPath></Defs></CentralIconBase>;\n};\n\nexport default IconTorch;\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,qECvBoB,IAA1B,sBAE8C,IAA9C,8BAEa,EAAsC,CAAC,IAAU,CAC5D,OAAO,wBAAkb,EAAlb,IAAqB,GAAO,wBAA8S,IAA9S,CAAG,SAAS,2BAA0B,wBAAC,OAAD,CAAM,EAAE,0BAA0B,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0GAA0G,OAAO,eAAe,YAAY,OAAM,EAAE,wBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAc,CAAI,EAAE,wBAA+F,OAA/F,KAAM,wBAA8E,WAA9E,CAAU,GAAG,qBAAoB,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,GAG5a",
|
|
9
|
+
"debugId": "EF196DEAA231B45164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";import{Svg as s}from"react-native-svg";var n=({children:t,size:o=24,...p})=>{return l.createElement(s,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t)};import r from"react";import{ClipPath as i,Defs as C,G as h,Path as e,Rect as m}from"react-native-svg";var a=(t)=>{return r.createElement(n,{...t},r.createElement(h,{ClipPath:"url(#clip0_15368_27803)"},r.createElement(e,{d:"M10.25 5.25L18.75 13.75",stroke:"currentColor"}),r.createElement(e,{d:"M1.5 16.725L8.85 9.375L9.375 5.7L13.575 1.5L22.5 10.425L18.3 14.625L14.625 15.15L7.275 22.5L1.5 16.725Z",stroke:"currentColor",strokeWidth:"1.05"}),r.createElement(e,{d:"M9.5 14.5L12 12",stroke:"currentColor"})),r.createElement(C,null,r.createElement(i,{id:"clip0_15368_27803"},r.createElement(m,{width:"24",height:"24",fill:"white"}))))},v=a;export{v as default,a as IconTorch};
|
|
2
|
+
|
|
3
|
+
//# debugId=0CBB5D60442D4BFA64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconTorch/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 { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconTorch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><G ClipPath=\"url(#clip0_15368_27803)\"><Path d=\"M10.25 5.25L18.75 13.75\" stroke=\"currentColor\"/><Path d=\"M1.5 16.725L8.85 9.375L9.375 5.7L13.575 1.5L22.5 10.425L18.3 14.625L14.625 15.15L7.275 22.5L1.5 16.725Z\" stroke=\"currentColor\" strokeWidth=\"1.05\"/><Path d=\"M9.5 14.5L12 12\" stroke=\"currentColor\"/></G><Defs><ClipPath id=\"clip0_15368_27803\"><Rect width=\"24\" height=\"24\" fill=\"white\"/></ClipPath></Defs></CentralIconBase>;\n};\n\nexport default IconTorch;\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,mBAAS,UAAU,OAAM,UAAG,UAAM,yBAE3B,IAAM,EAAsC,CAAC,IAAU,CAC5D,OAAO,gBAAkb,EAAlb,IAAqB,GAAO,gBAA8S,EAA9S,CAAG,SAAS,2BAA0B,gBAAC,EAAD,CAAM,EAAE,0BAA0B,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0GAA0G,OAAO,eAAe,YAAY,OAAM,EAAE,gBAAC,EAAD,CAAM,EAAE,kBAAkB,OAAO,eAAc,CAAI,EAAE,gBAA+F,EAA/F,KAAM,gBAA8E,EAA9E,CAAU,GAAG,qBAAoB,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,GAG5a",
|
|
9
|
+
"debugId": "0CBB5D60442D4BFA64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/README.md
CHANGED
|
@@ -412,6 +412,7 @@ Below is a complete list of available icons:
|
|
|
412
412
|
- IconQm3
|
|
413
413
|
- Icon3dBoxTop
|
|
414
414
|
- Icon3dBoxBottom
|
|
415
|
+
- IconReframe
|
|
415
416
|
|
|
416
417
|
### Building
|
|
417
418
|
|
|
@@ -687,6 +688,7 @@ Below is a complete list of available icons:
|
|
|
687
688
|
- IconAgentNetwork
|
|
688
689
|
- IconMagicMouse
|
|
689
690
|
- IconDevices2
|
|
691
|
+
- IconTorch
|
|
690
692
|
|
|
691
693
|
### Edit
|
|
692
694
|
|
|
@@ -781,6 +783,7 @@ Below is a complete list of available icons:
|
|
|
781
783
|
- IconWrite3
|
|
782
784
|
- IconColorPalette2
|
|
783
785
|
- IconEyedropper
|
|
786
|
+
- IconExtendImage
|
|
784
787
|
|
|
785
788
|
### Emoji
|
|
786
789
|
|