@central-icons-react-native/round-filled-radius-0-stroke-1 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:"M11.4395 7.43941C11.1581 7.72072 11 8.10214 11 8.49996V11.5C11 12.3284 11.6716 13 12.5 13H15.5C15.8978 13 16.2792 12.8418 16.5605 12.5605L21 8.12106V20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5V3.49996C3 3.22382 3.22386 2.99996 3.5 2.99996H15.8789L11.4395 7.43941Z",fill:"currentColor"}),p.default.createElement(m.Path,{d:"M18.1465 2.14645C18.3417 1.95118 18.6583 1.95118 18.8535 2.14645L21.8535 5.14645C22.0488 5.34171 22.0488 5.65822 21.8535 5.85348L15.8535 11.8535C15.7597 11.9472 15.6326 12 15.5 12H12.5C12.2239 12 12 11.7761 12 11.5V8.49996C12 8.36735 12.0527 8.24021 12.1465 8.14645L18.1465 2.14645Z",fill:"currentColor"}))},M=v;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=B6E274E9B1ADCAAF64756E2164756E21
|
|
@@ -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 d=\"
|
|
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=\"M11.4395 7.43941C11.1581 7.72072 11 8.10214 11 8.49996V11.5C11 12.3284 11.6716 13 12.5 13H15.5C15.8978 13 16.2792 12.8418 16.5605 12.5605L21 8.12106V20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5V3.49996C3 3.22382 3.22386 2.99996 3.5 2.99996H15.8789L11.4395 7.43941Z\" fill=\"currentColor\"/><Path d=\"M18.1465 2.14645C18.3417 1.95118 18.6583 1.95118 18.8535 2.14645L21.8535 5.14645C22.0488 5.34171 22.0488 5.65822 21.8535 5.85348L15.8535 11.8535C15.7597 11.9472 15.6326 12 15.5 12H12.5C12.2239 12 12 11.7761 12 11.5V8.49996C12 8.36735 12.0527 8.24021 12.1465 8.14645L18.1465 2.14645Z\" 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,wBAAspB,EAAtpB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,iSAAiS,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6RAA6R,KAAK,eAAc,CAAI,GAGhpB",
|
|
9
|
+
"debugId": "B6E274E9B1ADCAAF64756E2164756E21",
|
|
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:"M11.4395 7.43941C11.1581 7.72072 11 8.10214 11 8.49996V11.5C11 12.3284 11.6716 13 12.5 13H15.5C15.8978 13 16.2792 12.8418 16.5605 12.5605L21 8.12106V20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5V3.49996C3 3.22382 3.22386 2.99996 3.5 2.99996H15.8789L11.4395 7.43941Z",fill:"currentColor"}),t.createElement(n,{d:"M18.1465 2.14645C18.3417 1.95118 18.6583 1.95118 18.8535 2.14645L21.8535 5.14645C22.0488 5.34171 22.0488 5.65822 21.8535 5.85348L15.8535 11.8535C15.7597 11.9472 15.6326 12 15.5 12H12.5C12.2239 12 12 11.7761 12 11.5V8.49996C12 8.36735 12.0527 8.24021 12.1465 8.14645L18.1465 2.14645Z",fill:"currentColor"}))},g=a;export{g as default,a as IconEditSmall1};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=E73780C0E3291BE264756E2164756E21
|
|
@@ -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 d=\"
|
|
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=\"M11.4395 7.43941C11.1581 7.72072 11 8.10214 11 8.49996V11.5C11 12.3284 11.6716 13 12.5 13H15.5C15.8978 13 16.2792 12.8418 16.5605 12.5605L21 8.12106V20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5V3.49996C3 3.22382 3.22386 2.99996 3.5 2.99996H15.8789L11.4395 7.43941Z\" fill=\"currentColor\"/><Path d=\"M18.1465 2.14645C18.3417 1.95118 18.6583 1.95118 18.8535 2.14645L21.8535 5.14645C22.0488 5.34171 22.0488 5.65822 21.8535 5.85348L15.8535 11.8535C15.7597 11.9472 15.6326 12 15.5 12H12.5C12.2239 12 12 11.7761 12 11.5V8.49996C12 8.36735 12.0527 8.24021 12.1465 8.14645L18.1465 2.14645Z\" 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,gBAAspB,EAAtpB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,iSAAiS,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6RAA6R,KAAK,eAAc,CAAI,GAGhpB",
|
|
9
|
+
"debugId": "E73780C0E3291BE264756E2164756E21",
|
|
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:"M20.1464 3.14645C20.3417 2.95118 20.6582 2.95118 20.8535 3.14645C21.0487 3.34171 21.0487 3.65823 20.8535 3.85348L18 6.70699V12.2929L20.1464 10.1464C20.3417 9.95118 20.6582 9.95118 20.8535 10.1464C21.0487 10.3417 21.0487 10.6582 20.8535 10.8535L18 13.707V17.5C17.9999 17.7761 17.7761 17.9999 17.5 18H13.707L10.8535 20.8535C10.6582 21.0487 10.3417 21.0487 10.1464 20.8535C9.95118 20.6582 9.95118 20.3417 10.1464 20.1464L12.2929 18H6.70699L3.85348 20.8535C3.65823 21.0487 3.34171 21.0487 3.14645 20.8535C2.95118 20.6582 2.95118 20.3417 3.14645 20.1464L5.99996 17.2929V11.707L3.85348 13.8535C3.65823 14.0487 3.34171 14.0487 3.14645 13.8535C2.95118 13.6582 2.95118 13.3417 3.14645 13.1464L5.99996 10.2929V6.49996C5.99996 6.22382 6.22382 5.99996 6.49996 5.99996H10.2929L13.1464 3.14645C13.3417 2.95118 13.6582 2.95118 13.8535 3.14645C14.0487 3.34171 14.0487 3.65823 13.8535 3.85348L11.707 5.99996H17.2929L20.1464 3.14645Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M20.1464 16.1464C20.3417 15.9512 20.6582 15.9512 20.8535 16.1464C21.0487 16.3417 21.0487 16.6582 20.8535 16.8535L16.8535 20.8535C16.6582 21.0487 16.3417 21.0487 16.1464 20.8535C15.9512 20.6582 15.9512 20.3417 16.1464 20.1464L20.1464 16.1464Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M7.14645 3.14645C7.34171 2.95118 7.65822 2.95118 7.85348 3.14645C8.0487 3.34171 8.04873 3.65823 7.85348 3.85348L3.85348 7.85348C3.65823 8.04873 3.34171 8.0487 3.14645 7.85348C2.95118 7.65822 2.95118 7.34171 3.14645 7.14645L7.14645 3.14645Z",fill:"currentColor"}))},Z=d;
|
|
2
|
+
|
|
3
|
+
//# debugId=D12F655594B5726C64756E2164756E21
|
|
@@ -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=\"M20.1464 3.14645C20.3417 2.95118 20.6582 2.95118 20.8535 3.14645C21.0487 3.34171 21.0487 3.65823 20.8535 3.85348L18 6.70699V12.2929L20.1464 10.1464C20.3417 9.95118 20.6582 9.95118 20.8535 10.1464C21.0487 10.3417 21.0487 10.6582 20.8535 10.8535L18 13.707V17.5C17.9999 17.7761 17.7761 17.9999 17.5 18H13.707L10.8535 20.8535C10.6582 21.0487 10.3417 21.0487 10.1464 20.8535C9.95118 20.6582 9.95118 20.3417 10.1464 20.1464L12.2929 18H6.70699L3.85348 20.8535C3.65823 21.0487 3.34171 21.0487 3.14645 20.8535C2.95118 20.6582 2.95118 20.3417 3.14645 20.1464L5.99996 17.2929V11.707L3.85348 13.8535C3.65823 14.0487 3.34171 14.0487 3.14645 13.8535C2.95118 13.6582 2.95118 13.3417 3.14645 13.1464L5.99996 10.2929V6.49996C5.99996 6.22382 6.22382 5.99996 6.49996 5.99996H10.2929L13.1464 3.14645C13.3417 2.95118 13.6582 2.95118 13.8535 3.14645C14.0487 3.34171 14.0487 3.65823 13.8535 3.85348L11.707 5.99996H17.2929L20.1464 3.14645Z\" fill=\"currentColor\"/><Path d=\"M20.1464 16.1464C20.3417 15.9512 20.6582 15.9512 20.8535 16.1464C21.0487 16.3417 21.0487 16.6582 20.8535 16.8535L16.8535 20.8535C16.6582 21.0487 16.3417 21.0487 16.1464 20.8535C15.9512 20.6582 15.9512 20.3417 16.1464 20.1464L20.1464 16.1464Z\" fill=\"currentColor\"/><Path d=\"M7.14645 3.14645C7.34171 2.95118 7.65822 2.95118 7.85348 3.14645C8.0487 3.34171 8.04873 3.65823 7.85348 3.85348L3.85348 7.85348C3.65823 8.04873 3.34171 8.0487 3.14645 7.85348C2.95118 7.65822 2.95118 7.34171 3.14645 7.14645L7.14645 3.14645Z\" 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,wBAAi/C,EAAj/C,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,s5BAAs5B,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,CAAI,GAG3+C",
|
|
9
|
+
"debugId": "D12F655594B5726C64756E2164756E21",
|
|
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:"M20.1464 3.14645C20.3417 2.95118 20.6582 2.95118 20.8535 3.14645C21.0487 3.34171 21.0487 3.65823 20.8535 3.85348L18 6.70699V12.2929L20.1464 10.1464C20.3417 9.95118 20.6582 9.95118 20.8535 10.1464C21.0487 10.3417 21.0487 10.6582 20.8535 10.8535L18 13.707V17.5C17.9999 17.7761 17.7761 17.9999 17.5 18H13.707L10.8535 20.8535C10.6582 21.0487 10.3417 21.0487 10.1464 20.8535C9.95118 20.6582 9.95118 20.3417 10.1464 20.1464L12.2929 18H6.70699L3.85348 20.8535C3.65823 21.0487 3.34171 21.0487 3.14645 20.8535C2.95118 20.6582 2.95118 20.3417 3.14645 20.1464L5.99996 17.2929V11.707L3.85348 13.8535C3.65823 14.0487 3.34171 14.0487 3.14645 13.8535C2.95118 13.6582 2.95118 13.3417 3.14645 13.1464L5.99996 10.2929V6.49996C5.99996 6.22382 6.22382 5.99996 6.49996 5.99996H10.2929L13.1464 3.14645C13.3417 2.95118 13.6582 2.95118 13.8535 3.14645C14.0487 3.34171 14.0487 3.65823 13.8535 3.85348L11.707 5.99996H17.2929L20.1464 3.14645Z",fill:"currentColor"}),o.createElement(t,{d:"M20.1464 16.1464C20.3417 15.9512 20.6582 15.9512 20.8535 16.1464C21.0487 16.3417 21.0487 16.6582 20.8535 16.8535L16.8535 20.8535C16.6582 21.0487 16.3417 21.0487 16.1464 20.8535C15.9512 20.6582 15.9512 20.3417 16.1464 20.1464L20.1464 16.1464Z",fill:"currentColor"}),o.createElement(t,{d:"M7.14645 3.14645C7.34171 2.95118 7.65822 2.95118 7.85348 3.14645C8.0487 3.34171 8.04873 3.65823 7.85348 3.85348L3.85348 7.85348C3.65823 8.04873 3.34171 8.0487 3.14645 7.85348C2.95118 7.65822 2.95118 7.34171 3.14645 7.14645L7.14645 3.14645Z",fill:"currentColor"}))},g=L;export{g as default,L as IconExtendImage};
|
|
2
|
+
|
|
3
|
+
//# debugId=36CE1CDAB3ED34E464756E2164756E21
|
|
@@ -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=\"M20.1464 3.14645C20.3417 2.95118 20.6582 2.95118 20.8535 3.14645C21.0487 3.34171 21.0487 3.65823 20.8535 3.85348L18 6.70699V12.2929L20.1464 10.1464C20.3417 9.95118 20.6582 9.95118 20.8535 10.1464C21.0487 10.3417 21.0487 10.6582 20.8535 10.8535L18 13.707V17.5C17.9999 17.7761 17.7761 17.9999 17.5 18H13.707L10.8535 20.8535C10.6582 21.0487 10.3417 21.0487 10.1464 20.8535C9.95118 20.6582 9.95118 20.3417 10.1464 20.1464L12.2929 18H6.70699L3.85348 20.8535C3.65823 21.0487 3.34171 21.0487 3.14645 20.8535C2.95118 20.6582 2.95118 20.3417 3.14645 20.1464L5.99996 17.2929V11.707L3.85348 13.8535C3.65823 14.0487 3.34171 14.0487 3.14645 13.8535C2.95118 13.6582 2.95118 13.3417 3.14645 13.1464L5.99996 10.2929V6.49996C5.99996 6.22382 6.22382 5.99996 6.49996 5.99996H10.2929L13.1464 3.14645C13.3417 2.95118 13.6582 2.95118 13.8535 3.14645C14.0487 3.34171 14.0487 3.65823 13.8535 3.85348L11.707 5.99996H17.2929L20.1464 3.14645Z\" fill=\"currentColor\"/><Path d=\"M20.1464 16.1464C20.3417 15.9512 20.6582 15.9512 20.8535 16.1464C21.0487 16.3417 21.0487 16.6582 20.8535 16.8535L16.8535 20.8535C16.6582 21.0487 16.3417 21.0487 16.1464 20.8535C15.9512 20.6582 15.9512 20.3417 16.1464 20.1464L20.1464 16.1464Z\" fill=\"currentColor\"/><Path d=\"M7.14645 3.14645C7.34171 2.95118 7.65822 2.95118 7.85348 3.14645C8.0487 3.34171 8.04873 3.65823 7.85348 3.85348L3.85348 7.85348C3.65823 8.04873 3.34171 8.0487 3.14645 7.85348C2.95118 7.65822 2.95118 7.34171 3.14645 7.14645L7.14645 3.14645Z\" 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,gBAAi/C,EAAj/C,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,s5BAAs5B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,CAAI,GAG3+C",
|
|
9
|
+
"debugId": "36CE1CDAB3ED34E464756E2164756E21",
|
|
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,s=l.get(r);if(s)return s}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=(L??=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 L.set(r,o),o},L;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.75 0.922311C11.9047 0.833025 12.0953 0.833025 12.25 0.922311L17 3.6645C17.2391 3.80258 17.3206 4.108 17.1826 4.34712C17.0446 4.58621 16.7391 4.66866 16.5 4.53071L12.5 2.21919V11.7192L21 16.9174V12.3247C21 12.0486 21.2239 11.8247 21.5 11.8247C21.7761 11.8247 22 12.0486 22 12.3247V17.809C22 17.9876 21.9047 18.1533 21.75 18.2426L17 20.9848C16.761 21.1228 16.4556 21.041 16.3174 20.8022C16.1794 20.5631 16.2609 20.2567 16.5 20.1186L20.5195 17.7963L12 12.5864L3.47949 17.7963L7.5 20.1186C7.73912 20.2567 7.82063 20.5631 7.68262 20.8022C7.54442 21.041 7.239 21.1228 7 20.9848L2.25 18.2426C2.09532 18.1533 2 17.9876 2 17.809V12.3247C2.00005 12.0486 2.22389 11.8247 2.5 11.8247C2.77611 11.8247 2.99995 12.0486 3 12.3247V16.9174L11.5 11.7192V2.21919L7.5 4.53071C7.26088 4.66866 6.95542 4.58621 6.81738 4.34712C6.67938 4.108 6.76093 3.80258 7 3.6645L11.75 0.922311Z",fill:"currentColor"}))},M=V;
|
|
2
|
+
|
|
3
|
+
//# debugId=DEF497BBC76E06B064756E2164756E21
|
|
@@ -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.75 0.922311C11.9047 0.833025 12.0953 0.833025 12.25 0.922311L17 3.6645C17.2391 3.80258 17.3206 4.108 17.1826 4.34712C17.0446 4.58621 16.7391 4.66866 16.5 4.53071L12.5 2.21919V11.7192L21 16.9174V12.3247C21 12.0486 21.2239 11.8247 21.5 11.8247C21.7761 11.8247 22 12.0486 22 12.3247V17.809C22 17.9876 21.9047 18.1533 21.75 18.2426L17 20.9848C16.761 21.1228 16.4556 21.041 16.3174 20.8022C16.1794 20.5631 16.2609 20.2567 16.5 20.1186L20.5195 17.7963L12 12.5864L3.47949 17.7963L7.5 20.1186C7.73912 20.2567 7.82063 20.5631 7.68262 20.8022C7.54442 21.041 7.239 21.1228 7 20.9848L2.25 18.2426C2.09532 18.1533 2 17.9876 2 17.809V12.3247C2.00005 12.0486 2.22389 11.8247 2.5 11.8247C2.77611 11.8247 2.99995 12.0486 3 12.3247V16.9174L11.5 11.7192V2.21919L7.5 4.53071C7.26088 4.66866 6.95542 4.58621 6.81738 4.34712C6.67938 4.108 6.76093 3.80258 7 3.6645L11.75 0.922311Z\" 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,wBAA25B,EAA35B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,g2BAAg2B,KAAK,eAAc,CAAI,GAGr5B",
|
|
9
|
+
"debugId": "DEF497BBC76E06B064756E2164756E21",
|
|
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.75 0.922311C11.9047 0.833025 12.0953 0.833025 12.25 0.922311L17 3.6645C17.2391 3.80258 17.3206 4.108 17.1826 4.34712C17.0446 4.58621 16.7391 4.66866 16.5 4.53071L12.5 2.21919V11.7192L21 16.9174V12.3247C21 12.0486 21.2239 11.8247 21.5 11.8247C21.7761 11.8247 22 12.0486 22 12.3247V17.809C22 17.9876 21.9047 18.1533 21.75 18.2426L17 20.9848C16.761 21.1228 16.4556 21.041 16.3174 20.8022C16.1794 20.5631 16.2609 20.2567 16.5 20.1186L20.5195 17.7963L12 12.5864L3.47949 17.7963L7.5 20.1186C7.73912 20.2567 7.82063 20.5631 7.68262 20.8022C7.54442 21.041 7.239 21.1228 7 20.9848L2.25 18.2426C2.09532 18.1533 2 17.9876 2 17.809V12.3247C2.00005 12.0486 2.22389 11.8247 2.5 11.8247C2.77611 11.8247 2.99995 12.0486 3 12.3247V16.9174L11.5 11.7192V2.21919L7.5 4.53071C7.26088 4.66866 6.95542 4.58621 6.81738 4.34712C6.67938 4.108 6.76093 3.80258 7 3.6645L11.75 0.922311Z",fill:"currentColor"}))},P=m;export{P as default,m as IconReframe};
|
|
2
|
+
|
|
3
|
+
//# debugId=E8263CABF90CB51B64756E2164756E21
|
|
@@ -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.75 0.922311C11.9047 0.833025 12.0953 0.833025 12.25 0.922311L17 3.6645C17.2391 3.80258 17.3206 4.108 17.1826 4.34712C17.0446 4.58621 16.7391 4.66866 16.5 4.53071L12.5 2.21919V11.7192L21 16.9174V12.3247C21 12.0486 21.2239 11.8247 21.5 11.8247C21.7761 11.8247 22 12.0486 22 12.3247V17.809C22 17.9876 21.9047 18.1533 21.75 18.2426L17 20.9848C16.761 21.1228 16.4556 21.041 16.3174 20.8022C16.1794 20.5631 16.2609 20.2567 16.5 20.1186L20.5195 17.7963L12 12.5864L3.47949 17.7963L7.5 20.1186C7.73912 20.2567 7.82063 20.5631 7.68262 20.8022C7.54442 21.041 7.239 21.1228 7 20.9848L2.25 18.2426C2.09532 18.1533 2 17.9876 2 17.809V12.3247C2.00005 12.0486 2.22389 11.8247 2.5 11.8247C2.77611 11.8247 2.99995 12.0486 3 12.3247V16.9174L11.5 11.7192V2.21919L7.5 4.53071C7.26088 4.66866 6.95542 4.58621 6.81738 4.34712C6.67938 4.108 6.76093 3.80258 7 3.6645L11.75 0.922311Z\" 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,gBAA25B,EAA35B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,g2BAAg2B,KAAK,eAAc,CAAI,GAGr5B",
|
|
9
|
+
"debugId": "E8263CABF90CB51B64756E2164756E21",
|
|
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
|
|