@central-icons-react-native/round-filled-radius-0-stroke-2 1.1.259 → 1.1.260
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/IconEditSmall1/index.js +2 -2
- package/IconEditSmall1/index.js.map +3 -3
- package/IconEditSmall1/index.mjs +2 -2
- package/IconEditSmall1/index.mjs.map +3 -3
- 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/README.md +2 -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 +2 -0
- package/index.js +6 -0
- package/index.mjs +2 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +3 -1
package/IconEditSmall1/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var L=Object.create;var{getPrototypeOf:S,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function B(r){return this[r]}var y,F,I=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var s=o?y??=new WeakMap:F??=new WeakMap,f=s.get(r);if(f)return f}t=r!=null?L(S(r)):{};let C=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let l of i(r))if(!u.call(C,l))n(C,l,{get:B.bind(r,l),enumerable:!0});if(e)s.set(r,C);return C},x=(r)=>{var o=(c??=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 i(r))if(!u.call(o,e))n(o,e,{get:B.bind(r,e),enumerable:!(t=h(r,e))||t.enumerable})}return c.set(r,o),o},c;var H=(r)=>r;function V(r,o){this[r]=H.bind(null,o)}var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:V.bind(o,t)})};var b={};P(b,{CentralIconBase:()=>a});module.exports=x(b);var g=I(require("react")),d=require("react-native-svg"),a=({children:r,size:o=24,...t})=>{return g.default.createElement(d.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={};P(w,{default:()=>M,IconEditSmall1:()=>v});module.exports=x(w);var p=I(require("react"));var m=require("react-native-svg"),v=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M10.8789 5.87883C10.3163 6.44144 10 7.20428 10 7.99992V10.9999C10 12.6568 11.3431 13.9999 13 13.9999H16C16.7957 13.9999 17.5585 13.6836 18.1211 13.121L21 10.2421V19.9999C21 20.5522 20.5523 20.9999 20 20.9999H4C3.44772 20.9999 3 20.5522 3 19.9999V3.99992C3 3.44764 3.44772 2.99992 4 2.99992H13.7578L10.8789 5.87883Z",fill:"currentColor"}),p.default.createElement(m.Path,{d:"M18.293 1.29289C18.6835 0.902369 19.3165 0.902369 19.707 1.29289L22.707 4.29289C23.0976 4.68342 23.0976 5.31643 22.707 5.70696L16.707 11.707C16.5195 11.8945 16.2652 11.9999 16 11.9999H13C12.4477 11.9999 12 11.5522 12 10.9999V7.99992C12 7.73471 12.1054 7.48043 12.293 7.29289L18.293 1.29289Z",fill:"currentColor"}))},M=v;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=06FAE61A96BA016C64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconEditSmall1/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 IconEditSmall1: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconEditSmall1: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M10.8789 5.87883C10.3163 6.44144 10 7.20428 10 7.99992V10.9999C10 12.6568 11.3431 13.9999 13 13.9999H16C16.7957 13.9999 17.5585 13.6836 18.1211 13.121L21 10.2421V19.9999C21 20.5522 20.5523 20.9999 20 20.9999H4C3.44772 20.9999 3 20.5522 3 19.9999V3.99992C3 3.44764 3.44772 2.99992 4 2.99992H13.7578L10.8789 5.87883Z\" fill=\"currentColor\"/><Path d=\"M18.293 1.29289C18.6835 0.902369 19.3165 0.902369 19.707 1.29289L22.707 4.29289C23.0976 4.68342 23.0976 5.31643 22.707 5.70696L16.707 11.707C16.5195 11.8945 16.2652 11.9999 16 11.9999H13C12.4477 11.9999 12 11.5522 12 10.9999V7.99992C12 7.73471 12.1054 7.48043 12.293 7.29289L18.293 1.29289Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconEditSmall1;\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,0ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA2C,CAAC,IAAU,CACjE,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,0ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA2C,CAAC,IAAU,CACjE,OAAO,wBAA0rB,EAA1rB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,6TAA6T,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,qSAAqS,KAAK,eAAc,CAAI,GAGprB",
|
|
9
|
+
"debugId": "06FAE61A96BA016C64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconEditSmall1/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...C})=>{return p.createElement(l,{...C,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 a=(o)=>{return t.createElement(e,{...o},t.createElement(n,{d:"M10.8789 5.87883C10.3163 6.44144 10 7.20428 10 7.99992V10.9999C10 12.6568 11.3431 13.9999 13 13.9999H16C16.7957 13.9999 17.5585 13.6836 18.1211 13.121L21 10.2421V19.9999C21 20.5522 20.5523 20.9999 20 20.9999H4C3.44772 20.9999 3 20.5522 3 19.9999V3.99992C3 3.44764 3.44772 2.99992 4 2.99992H13.7578L10.8789 5.87883Z",fill:"currentColor"}),t.createElement(n,{d:"M18.293 1.29289C18.6835 0.902369 19.3165 0.902369 19.707 1.29289L22.707 4.29289C23.0976 4.68342 23.0976 5.31643 22.707 5.70696L16.707 11.707C16.5195 11.8945 16.2652 11.9999 16 11.9999H13C12.4477 11.9999 12 11.5522 12 10.9999V7.99992C12 7.73471 12.1054 7.48043 12.293 7.29289L18.293 1.29289Z",fill:"currentColor"}))},g=a;export{g as default,a as IconEditSmall1};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=2FE041E752B3183464756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconEditSmall1/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 IconEditSmall1: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconEditSmall1: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M10.8789 5.87883C10.3163 6.44144 10 7.20428 10 7.99992V10.9999C10 12.6568 11.3431 13.9999 13 13.9999H16C16.7957 13.9999 17.5585 13.6836 18.1211 13.121L21 10.2421V19.9999C21 20.5522 20.5523 20.9999 20 20.9999H4C3.44772 20.9999 3 20.5522 3 19.9999V3.99992C3 3.44764 3.44772 2.99992 4 2.99992H13.7578L10.8789 5.87883Z\" fill=\"currentColor\"/><Path d=\"M18.293 1.29289C18.6835 0.902369 19.3165 0.902369 19.707 1.29289L22.707 4.29289C23.0976 4.68342 23.0976 5.31643 22.707 5.70696L16.707 11.707C16.5195 11.8945 16.2652 11.9999 16 11.9999H13C12.4477 11.9999 12 11.5522 12 10.9999V7.99992C12 7.73471 12.1054 7.48043 12.293 7.29289L18.293 1.29289Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconEditSmall1;\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,EAA2C,CAAC,IAAU,CACjE,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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAA0rB,EAA1rB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,6TAA6T,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qSAAqS,KAAK,eAAc,CAAI,GAGprB",
|
|
9
|
+
"debugId": "2FE041E752B3183464756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var v=Object.create;var{getPrototypeOf:h,defineProperty:e,getOwnPropertyNames:c,getOwnPropertyDescriptor:y}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var F,H,I=(r,o,C)=>{var t=r!=null&&typeof r==="object";if(t){var m=o?F??=new WeakMap:H??=new WeakMap,f=m.get(r);if(f)return f}C=r!=null?v(h(r)):{};let p=o||!r||!r.__esModule?e(C,"default",{value:r,enumerable:!0}):C;for(let L of c(r))if(!i.call(p,L))e(p,L,{get:u.bind(r,L),enumerable:!0});if(t)m.set(r,p);return p},x=(r)=>{var o=(s??=new WeakMap).get(r),C;if(o)return o;if(o=e({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of c(r))if(!i.call(o,t))e(o,t,{get:u.bind(r,t),enumerable:!(C=y(r,t))||C.enumerable})}return s.set(r,o),o},s;var S=(r)=>r;function V(r,o){this[r]=S.bind(null,o)}var B=(r,o)=>{for(var C in o)e(r,C,{get:o[C],enumerable:!0,configurable:!0,set:V.bind(o,C)})};var b={};B(b,{CentralIconBase:()=>a});module.exports=x(b);var g=I(require("react")),P=require("react-native-svg"),a=({children:r,size:o=24,...C})=>{return g.default.createElement(P.Svg,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var M={};B(M,{default:()=>Z,IconExtendImage:()=>d});module.exports=x(M);var n=I(require("react"));var l=require("react-native-svg"),d=(r)=>{return n.default.createElement(a,{...r},n.default.createElement(l.Path,{d:"M19.2929 3.29289C19.6834 2.90237 20.3164 2.90237 20.707 3.29289C21.0974 3.68342 21.0975 4.31646 20.707 4.70696L17.9999 7.41399V11.5859L19.2929 10.2929C19.6834 9.90237 20.3164 9.90237 20.707 10.2929C21.0974 10.6834 21.0975 11.3165 20.707 11.707L17.9999 14.414V16.9999C17.9999 17.5521 17.5521 17.9999 16.9999 17.9999H14.414L11.707 20.707C11.3165 21.0975 10.6834 21.0974 10.2929 20.707C9.90237 20.3164 9.90237 19.6834 10.2929 19.2929L11.5859 17.9999H7.41399L4.70696 20.707C4.31646 21.0975 3.68342 21.0974 3.29289 20.707C2.90237 20.3164 2.90237 19.6834 3.29289 19.2929L5.99992 16.5859V12.414L4.70696 13.707C4.31646 14.0975 3.68342 14.0974 3.29289 13.707C2.90237 13.3164 2.90237 12.6834 3.29289 12.2929L5.99992 9.58586V6.99992C5.99992 6.44764 6.44764 5.99992 6.99992 5.99992H9.58586L12.2929 3.29289C12.6834 2.90237 13.3164 2.90237 13.707 3.29289C14.0974 3.68342 14.0975 4.31646 13.707 4.70696L12.414 5.99992H16.5859L19.2929 3.29289Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M19.2929 16.2929C19.6834 15.9024 20.3164 15.9024 20.707 16.2929C21.0974 16.6834 21.0975 17.3165 20.707 17.707L17.707 20.707C17.3165 21.0975 16.6834 21.0974 16.2929 20.707C15.9024 20.3164 15.9024 19.6834 16.2929 19.2929L19.2929 16.2929Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M6.29289 3.29289C6.68342 2.90237 7.31643 2.90237 7.70696 3.29289C8.0974 3.68342 8.09746 4.31646 7.70696 4.70696L4.70696 7.70696C4.31646 8.09746 3.68342 8.0974 3.29289 7.70696C2.90237 7.31643 2.90237 6.68342 3.29289 6.29289L6.29289 3.29289Z",fill:"currentColor"}))},Z=d;
|
|
2
|
+
|
|
3
|
+
//# debugId=3B6CE94239F78A4B64756E2164756E21
|
|
@@ -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 } from \"react-native-svg\";\n\nexport const IconExtendImage: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M19.2929 3.29289C19.6834 2.90237 20.3164 2.90237 20.707 3.29289C21.0974 3.68342 21.0975 4.31646 20.707 4.70696L17.9999 7.41399V11.5859L19.2929 10.2929C19.6834 9.90237 20.3164 9.90237 20.707 10.2929C21.0974 10.6834 21.0975 11.3165 20.707 11.707L17.9999 14.414V16.9999C17.9999 17.5521 17.5521 17.9999 16.9999 17.9999H14.414L11.707 20.707C11.3165 21.0975 10.6834 21.0974 10.2929 20.707C9.90237 20.3164 9.90237 19.6834 10.2929 19.2929L11.5859 17.9999H7.41399L4.70696 20.707C4.31646 21.0975 3.68342 21.0974 3.29289 20.707C2.90237 20.3164 2.90237 19.6834 3.29289 19.2929L5.99992 16.5859V12.414L4.70696 13.707C4.31646 14.0975 3.68342 14.0974 3.29289 13.707C2.90237 13.3164 2.90237 12.6834 3.29289 12.2929L5.99992 9.58586V6.99992C5.99992 6.44764 6.44764 5.99992 6.99992 5.99992H9.58586L12.2929 3.29289C12.6834 2.90237 13.3164 2.90237 13.707 3.29289C14.0974 3.68342 14.0975 4.31646 13.707 4.70696L12.414 5.99992H16.5859L19.2929 3.29289Z\" fill=\"currentColor\"/><Path d=\"M19.2929 16.2929C19.6834 15.9024 20.3164 15.9024 20.707 16.2929C21.0974 16.6834 21.0975 17.3165 20.707 17.707L17.707 20.707C17.3165 21.0975 16.6834 21.0974 16.2929 20.707C15.9024 20.3164 15.9024 19.6834 16.2929 19.2929L19.2929 16.2929Z\" fill=\"currentColor\"/><Path d=\"M6.29289 3.29289C6.68342 2.90237 7.31643 2.90237 7.70696 3.29289C8.0974 3.68342 8.09746 4.31646 7.70696 4.70696L4.70696 7.70696C4.31646 8.09746 3.68342 8.0974 3.29289 7.70696C2.90237 7.31643 2.90237 6.68342 3.29289 6.29289L6.29289 3.29289Z\" fill=\"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,sBAEqB,IAArB,8BAEa,EAA4C,CAAC,IAAU,CAClE,OAAO,wBAAu/C,EAAv/C,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,k6BAAk6B,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8OAA8O,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,CAAI,GAGj/C",
|
|
9
|
+
"debugId": "3B6CE94239F78A4B64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as l}from"react-native-svg";var e=({children:C,size:r=24,...n})=>{return p.createElement(l,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C)};import o from"react";import{Path as t}from"react-native-svg";var L=(C)=>{return o.createElement(e,{...C},o.createElement(t,{d:"M19.2929 3.29289C19.6834 2.90237 20.3164 2.90237 20.707 3.29289C21.0974 3.68342 21.0975 4.31646 20.707 4.70696L17.9999 7.41399V11.5859L19.2929 10.2929C19.6834 9.90237 20.3164 9.90237 20.707 10.2929C21.0974 10.6834 21.0975 11.3165 20.707 11.707L17.9999 14.414V16.9999C17.9999 17.5521 17.5521 17.9999 16.9999 17.9999H14.414L11.707 20.707C11.3165 21.0975 10.6834 21.0974 10.2929 20.707C9.90237 20.3164 9.90237 19.6834 10.2929 19.2929L11.5859 17.9999H7.41399L4.70696 20.707C4.31646 21.0975 3.68342 21.0974 3.29289 20.707C2.90237 20.3164 2.90237 19.6834 3.29289 19.2929L5.99992 16.5859V12.414L4.70696 13.707C4.31646 14.0975 3.68342 14.0974 3.29289 13.707C2.90237 13.3164 2.90237 12.6834 3.29289 12.2929L5.99992 9.58586V6.99992C5.99992 6.44764 6.44764 5.99992 6.99992 5.99992H9.58586L12.2929 3.29289C12.6834 2.90237 13.3164 2.90237 13.707 3.29289C14.0974 3.68342 14.0975 4.31646 13.707 4.70696L12.414 5.99992H16.5859L19.2929 3.29289Z",fill:"currentColor"}),o.createElement(t,{d:"M19.2929 16.2929C19.6834 15.9024 20.3164 15.9024 20.707 16.2929C21.0974 16.6834 21.0975 17.3165 20.707 17.707L17.707 20.707C17.3165 21.0975 16.6834 21.0974 16.2929 20.707C15.9024 20.3164 15.9024 19.6834 16.2929 19.2929L19.2929 16.2929Z",fill:"currentColor"}),o.createElement(t,{d:"M6.29289 3.29289C6.68342 2.90237 7.31643 2.90237 7.70696 3.29289C8.0974 3.68342 8.09746 4.31646 7.70696 4.70696L4.70696 7.70696C4.31646 8.09746 3.68342 8.0974 3.29289 7.70696C2.90237 7.31643 2.90237 6.68342 3.29289 6.29289L6.29289 3.29289Z",fill:"currentColor"}))},g=L;export{g as default,L as IconExtendImage};
|
|
2
|
+
|
|
3
|
+
//# debugId=9DD271143E34A2F164756E2164756E21
|
|
@@ -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 } from \"react-native-svg\";\n\nexport const IconExtendImage: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M19.2929 3.29289C19.6834 2.90237 20.3164 2.90237 20.707 3.29289C21.0974 3.68342 21.0975 4.31646 20.707 4.70696L17.9999 7.41399V11.5859L19.2929 10.2929C19.6834 9.90237 20.3164 9.90237 20.707 10.2929C21.0974 10.6834 21.0975 11.3165 20.707 11.707L17.9999 14.414V16.9999C17.9999 17.5521 17.5521 17.9999 16.9999 17.9999H14.414L11.707 20.707C11.3165 21.0975 10.6834 21.0974 10.2929 20.707C9.90237 20.3164 9.90237 19.6834 10.2929 19.2929L11.5859 17.9999H7.41399L4.70696 20.707C4.31646 21.0975 3.68342 21.0974 3.29289 20.707C2.90237 20.3164 2.90237 19.6834 3.29289 19.2929L5.99992 16.5859V12.414L4.70696 13.707C4.31646 14.0975 3.68342 14.0974 3.29289 13.707C2.90237 13.3164 2.90237 12.6834 3.29289 12.2929L5.99992 9.58586V6.99992C5.99992 6.44764 6.44764 5.99992 6.99992 5.99992H9.58586L12.2929 3.29289C12.6834 2.90237 13.3164 2.90237 13.707 3.29289C14.0974 3.68342 14.0975 4.31646 13.707 4.70696L12.414 5.99992H16.5859L19.2929 3.29289Z\" fill=\"currentColor\"/><Path d=\"M19.2929 16.2929C19.6834 15.9024 20.3164 15.9024 20.707 16.2929C21.0974 16.6834 21.0975 17.3165 20.707 17.707L17.707 20.707C17.3165 21.0975 16.6834 21.0974 16.2929 20.707C15.9024 20.3164 15.9024 19.6834 16.2929 19.2929L19.2929 16.2929Z\" fill=\"currentColor\"/><Path d=\"M6.29289 3.29289C6.68342 2.90237 7.31643 2.90237 7.70696 3.29289C8.0974 3.68342 8.09746 4.31646 7.70696 4.70696L4.70696 7.70696C4.31646 8.09746 3.68342 8.0974 3.29289 7.70696C2.90237 7.31643 2.90237 6.68342 3.29289 6.29289L6.29289 3.29289Z\" fill=\"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,yBAEF,IAAM,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAu/C,EAAv/C,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,k6BAAk6B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8OAA8O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,CAAI,GAGj/C",
|
|
9
|
+
"debugId": "9DD271143E34A2F164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var v=Object.create;var{getPrototypeOf:h,defineProperty:C,getOwnPropertyNames:f,getOwnPropertyDescriptor:y}=Object,c=Object.prototype.hasOwnProperty;function B(r){return this[r]}var F,S,I=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var l=o?F??=new WeakMap:S??=new WeakMap,L=l.get(r);if(L)return L}e=r!=null?v(h(r)):{};let n=o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e;for(let p of f(r))if(!c.call(n,p))C(n,p,{get:B.bind(r,p),enumerable:!0});if(t)l.set(r,n);return n},i=(r)=>{var o=(s??=new WeakMap).get(r),e;if(o)return o;if(o=C({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of f(r))if(!c.call(o,t))C(o,t,{get:B.bind(r,t),enumerable:!(e=y(r,t))||e.enumerable})}return s.set(r,o),o},s;var b=(r)=>r;function d(r,o){this[r]=b.bind(null,o)}var u=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0,configurable:!0,set:d.bind(o,e)})};var w={};u(w,{CentralIconBase:()=>a});module.exports=i(w);var x=I(require("react")),P=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return x.default.createElement(P.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 $={};u($,{default:()=>M,IconReframe:()=>V});module.exports=i($);var m=I(require("react"));var g=require("react-native-svg"),V=(r)=>{return m.default.createElement(a,{...r},m.default.createElement(g.Path,{d:"M11.6191 0.682482C11.9035 0.565334 12.2293 0.58487 12.5 0.741076L17 3.33971C17.478 3.6158 17.6419 4.22678 17.3662 4.70494C17.0901 5.18324 16.4783 5.3473 16 5.07115L13 3.33873V11.4217L20 15.4637V11.9999C20.0001 11.4476 20.4478 10.9999 21 10.9999C21.5522 10.9999 21.9999 11.4476 22 11.9999V17.1962C21.9999 17.5532 21.8092 17.8828 21.5 18.0614L17 20.66C16.5217 20.9361 15.9099 20.7721 15.6338 20.2938C15.3578 19.8155 15.5218 19.2037 16 18.9276L19 17.1952L12 13.1542L4.99902 17.1952L8 18.9276C8.47823 19.2037 8.6422 19.8155 8.36621 20.2938C8.09008 20.7721 7.47828 20.9361 7 20.66L2.5 18.0614C2.19085 17.8828 2.00014 17.5532 2 17.1962V11.9999C2.00007 11.4476 2.44776 10.9999 3 10.9999C3.55224 10.9999 3.99993 11.4476 4 11.9999V15.4637L11 11.4217V3.33873L8 5.07115C7.52171 5.3473 6.90993 5.18324 6.63379 4.70494C6.35808 4.22678 6.522 3.6158 7 3.33971L11.5 0.741076L11.6191 0.682482Z",fill:"currentColor"}))},M=V;
|
|
2
|
+
|
|
3
|
+
//# debugId=07A4F3FB32BD3F3E64756E2164756E21
|
|
@@ -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=\"M11.6191 0.682482C11.9035 0.565334 12.2293 0.58487 12.5 0.741076L17 3.33971C17.478 3.6158 17.6419 4.22678 17.3662 4.70494C17.0901 5.18324 16.4783 5.3473 16 5.07115L13 3.33873V11.4217L20 15.4637V11.9999C20.0001 11.4476 20.4478 10.9999 21 10.9999C21.5522 10.9999 21.9999 11.4476 22 11.9999V17.1962C21.9999 17.5532 21.8092 17.8828 21.5 18.0614L17 20.66C16.5217 20.9361 15.9099 20.7721 15.6338 20.2938C15.3578 19.8155 15.5218 19.2037 16 18.9276L19 17.1952L12 13.1542L4.99902 17.1952L8 18.9276C8.47823 19.2037 8.6422 19.8155 8.36621 20.2938C8.09008 20.7721 7.47828 20.9361 7 20.66L2.5 18.0614C2.19085 17.8828 2.00014 17.5532 2 17.1962V11.9999C2.00007 11.4476 2.44776 10.9999 3 10.9999C3.55224 10.9999 3.99993 11.4476 4 11.9999V15.4637L11 11.4217V3.33873L8 5.07115C7.52171 5.3473 6.90993 5.18324 6.63379 4.70494C6.35808 4.22678 6.522 3.6158 7 3.33971L11.5 0.741076L11.6191 0.682482Z\" fill=\"currentColor\"/></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,wBAA06B,EAA16B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,+2BAA+2B,KAAK,eAAc,CAAI,GAGp6B",
|
|
9
|
+
"debugId": "07A4F3FB32BD3F3E64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import n from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...C})=>{return n.createElement(p,{...C,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 a}from"react-native-svg";var m=(o)=>{return t.createElement(e,{...o},t.createElement(a,{d:"M11.6191 0.682482C11.9035 0.565334 12.2293 0.58487 12.5 0.741076L17 3.33971C17.478 3.6158 17.6419 4.22678 17.3662 4.70494C17.0901 5.18324 16.4783 5.3473 16 5.07115L13 3.33873V11.4217L20 15.4637V11.9999C20.0001 11.4476 20.4478 10.9999 21 10.9999C21.5522 10.9999 21.9999 11.4476 22 11.9999V17.1962C21.9999 17.5532 21.8092 17.8828 21.5 18.0614L17 20.66C16.5217 20.9361 15.9099 20.7721 15.6338 20.2938C15.3578 19.8155 15.5218 19.2037 16 18.9276L19 17.1952L12 13.1542L4.99902 17.1952L8 18.9276C8.47823 19.2037 8.6422 19.8155 8.36621 20.2938C8.09008 20.7721 7.47828 20.9361 7 20.66L2.5 18.0614C2.19085 17.8828 2.00014 17.5532 2 17.1962V11.9999C2.00007 11.4476 2.44776 10.9999 3 10.9999C3.55224 10.9999 3.99993 11.4476 4 11.9999V15.4637L11 11.4217V3.33873L8 5.07115C7.52171 5.3473 6.90993 5.18324 6.63379 4.70494C6.35808 4.22678 6.522 3.6158 7 3.33971L11.5 0.741076L11.6191 0.682482Z",fill:"currentColor"}))},P=m;export{P as default,m as IconReframe};
|
|
2
|
+
|
|
3
|
+
//# debugId=4DD0F150AC8093A464756E2164756E21
|
|
@@ -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=\"M11.6191 0.682482C11.9035 0.565334 12.2293 0.58487 12.5 0.741076L17 3.33971C17.478 3.6158 17.6419 4.22678 17.3662 4.70494C17.0901 5.18324 16.4783 5.3473 16 5.07115L13 3.33873V11.4217L20 15.4637V11.9999C20.0001 11.4476 20.4478 10.9999 21 10.9999C21.5522 10.9999 21.9999 11.4476 22 11.9999V17.1962C21.9999 17.5532 21.8092 17.8828 21.5 18.0614L17 20.66C16.5217 20.9361 15.9099 20.7721 15.6338 20.2938C15.3578 19.8155 15.5218 19.2037 16 18.9276L19 17.1952L12 13.1542L4.99902 17.1952L8 18.9276C8.47823 19.2037 8.6422 19.8155 8.36621 20.2938C8.09008 20.7721 7.47828 20.9361 7 20.66L2.5 18.0614C2.19085 17.8828 2.00014 17.5532 2 17.1962V11.9999C2.00007 11.4476 2.44776 10.9999 3 10.9999C3.55224 10.9999 3.99993 11.4476 4 11.9999V15.4637L11 11.4217V3.33873L8 5.07115C7.52171 5.3473 6.90993 5.18324 6.63379 4.70494C6.35808 4.22678 6.522 3.6158 7 3.33971L11.5 0.741076L11.6191 0.682482Z\" fill=\"currentColor\"/></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,gBAA06B,EAA16B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,+2BAA+2B,KAAK,eAAc,CAAI,GAGp6B",
|
|
9
|
+
"debugId": "4DD0F150AC8093A464756E2164756E21",
|
|
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
|
|
|
@@ -781,6 +782,7 @@ Below is a complete list of available icons:
|
|
|
781
782
|
- IconWrite3
|
|
782
783
|
- IconColorPalette2
|
|
783
784
|
- IconEyedropper
|
|
785
|
+
- IconExtendImage
|
|
784
786
|
|
|
785
787
|
### Emoji
|
|
786
788
|
|