@central-icons-react-native/round-filled-radius-1-stroke-2 1.1.273 → 1.1.275
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/IconFolderBookmarks/index.js +2 -2
- package/IconFolderBookmarks/index.js.map +3 -3
- package/IconFolderBookmarks/index.mjs +2 -2
- package/IconFolderBookmarks/index.mjs.map +3 -3
- package/IconFolderCloud/index.js +2 -2
- package/IconFolderCloud/index.js.map +3 -3
- package/IconFolderCloud/index.mjs +2 -2
- package/IconFolderCloud/index.mjs.map +3 -3
- package/IconMoveFolder/index.js +2 -2
- package/IconMoveFolder/index.js.map +3 -3
- package/IconMoveFolder/index.mjs +2 -2
- package/IconMoveFolder/index.mjs.map +3 -3
- package/IconMoveFolderInside/index.d.ts +4 -0
- package/IconMoveFolderInside/index.js +3 -0
- package/IconMoveFolderInside/index.js.map +11 -0
- package/IconMoveFolderInside/index.mjs +3 -0
- package/IconMoveFolderInside/index.mjs.map +11 -0
- package/IconPhoneHaptic2/index.d.ts +4 -0
- package/IconPhoneHaptic2/index.js +3 -0
- package/IconPhoneHaptic2/index.js.map +11 -0
- package/IconPhoneHaptic2/index.mjs +3 -0
- package/IconPhoneHaptic2/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
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var F=Object.create;var{getPrototypeOf:H,defineProperty:t,getOwnPropertyNames:i,getOwnPropertyDescriptor:V}=Object,u=Object.prototype.hasOwnProperty;function d(o){return this[o]}var h,y,B=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var s=r?h??=new WeakMap:y??=new WeakMap,f=s.get(o);if(f)return f}e=o!=null?F(H(o)):{};let C=r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e;for(let p of i(o))if(!u.call(C,p))t(C,p,{get:d.bind(o,p),enumerable:!0});if(n)s.set(o,C);return C},I=(o)=>{var r=(c??=new WeakMap).get(o),e;if(r)return r;if(r=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of i(o))if(!u.call(r,n))t(r,n,{get:d.bind(o,n),enumerable:!(e=V(o,n))||e.enumerable})}return c.set(o,r),r},c;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var v=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0,configurable:!0,set:b.bind(r,e)})};var L={};v(L,{CentralIconBase:()=>a});module.exports=I(L);var x=B(require("react")),P=require("react-native-svg"),a=({children:o,size:r=24,...e})=>{return x.default.createElement(P.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 k={};v(k,{default:()=>w,IconFolderBookmarks:()=>g});module.exports=I(k);var l=B(require("react"));var m=require("react-native-svg"),g=(o)=>{return l.default.createElement(a,{...o},l.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 14C1 13.4477 1.44772 13 2 13H7C7.55228 13 8 13.4477 8 14V20C8 20.3603 7.80621 20.6927 7.4927 20.8702C7.17919 21.0477 6.79444 21.0429 6.4855 20.8575L4.5 19.6662L2.5145 20.8575C2.20556 21.0429 1.82081 21.0477 1.5073 20.8702C1.19379 20.6927 1 20.3603 1 20V14Z",fill:"currentColor"}),l.default.createElement(m.Path,{d:"M2 5C2 3.89543 2.89543 3 4 3H9.46482C10.1335 3 10.758 3.3342 11.1289 3.8906L12.5352 6H20C21.1046 6 22 6.89543 22 8V18C22 19.1046 21.1046 20 20 20H10V13.5C10 12.1193 8.88071 11 7.5 11H2V5Z",fill:"currentColor"}))},w=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=A57A31DCD20ACEC864756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconFolderBookmarks/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 IconFolderBookmarks: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFolderBookmarks: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 14C1 13.4477 1.44772 13 2 13H7C7.55228 13 8 13.4477 8 14V20C8 20.3603 7.80621 20.6927 7.4927 20.8702C7.17919 21.0477 6.79444 21.0429 6.4855 20.8575L4.5 19.6662L2.5145 20.8575C2.20556 21.0429 1.82081 21.0477 1.5073 20.8702C1.19379 20.6927 1 20.3603 1 20V14Z\" fill=\"currentColor\"/><Path d=\"M2 5C2 3.89543 2.89543 3 4 3H9.46482C10.1335 3 10.758 3.3342 11.1289 3.8906L12.5352 6H20C21.1046 6 22 6.89543 22 8V18C22 19.1046 21.1046 20 20 20H10V13.5C10 12.1193 8.88071 11 7.5 11H2V5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFolderBookmarks;\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,+ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAgD,CAAC,IAAU,CACtE,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,+ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAgD,CAAC,IAAU,CACtE,OAAO,wBAAkkB,EAAlkB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sQAAsQ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8LAA8L,KAAK,eAAc,CAAI,GAG5jB",
|
|
9
|
+
"debugId": "A57A31DCD20ACEC864756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import l from"react";import{Svg as p}from"react-native-svg";var n=({children:r,size:o=24,...C})=>{return l.createElement(p,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import e from"react";import{Path as t}from"react-native-svg";var a=(r)=>{return e.createElement(n,{...r},e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M1 14C1 13.4477 1.44772 13 2 13H7C7.55228 13 8 13.4477 8 14V20C8 20.3603 7.80621 20.6927 7.4927 20.8702C7.17919 21.0477 6.79444 21.0429 6.4855 20.8575L4.5 19.6662L2.5145 20.8575C2.20556 21.0429 1.82081 21.0477 1.5073 20.8702C1.19379 20.6927 1 20.3603 1 20V14Z",fill:"currentColor"}),e.createElement(t,{d:"M2 5C2 3.89543 2.89543 3 4 3H9.46482C10.1335 3 10.758 3.3342 11.1289 3.8906L12.5352 6H20C21.1046 6 22 6.89543 22 8V18C22 19.1046 21.1046 20 20 20H10V13.5C10 12.1193 8.88071 11 7.5 11H2V5Z",fill:"currentColor"}))},x=a;export{x as default,a as IconFolderBookmarks};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=AB7BBAD53BCDE74764756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconFolderBookmarks/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 IconFolderBookmarks: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFolderBookmarks: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 14C1 13.4477 1.44772 13 2 13H7C7.55228 13 8 13.4477 8 14V20C8 20.3603 7.80621 20.6927 7.4927 20.8702C7.17919 21.0477 6.79444 21.0429 6.4855 20.8575L4.5 19.6662L2.5145 20.8575C2.20556 21.0429 1.82081 21.0477 1.5073 20.8702C1.19379 20.6927 1 20.3603 1 20V14Z\" fill=\"currentColor\"/><Path d=\"M2 5C2 3.89543 2.89543 3 4 3H9.46482C10.1335 3 10.758 3.3342 11.1289 3.8906L12.5352 6H20C21.1046 6 22 6.89543 22 8V18C22 19.1046 21.1046 20 20 20H10V13.5C10 12.1193 8.88071 11 7.5 11H2V5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFolderBookmarks;\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,EAAgD,CAAC,IAAU,CACtE,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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAkkB,EAAlkB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sQAAsQ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8LAA8L,KAAK,eAAc,CAAI,GAG5jB",
|
|
9
|
+
"debugId": "AB7BBAD53BCDE74764756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconFolderCloud/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var F=Object.create;var{getPrototypeOf:
|
|
1
|
+
var F=Object.create;var{getPrototypeOf:h,defineProperty:t,getOwnPropertyNames:u,getOwnPropertyDescriptor:y}=Object,d=Object.prototype.hasOwnProperty;function i(o){return this[o]}var H,S,B=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var f=r?H??=new WeakMap:S??=new WeakMap,s=f.get(o);if(s)return s}e=o!=null?F(h(o)):{};let C=r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e;for(let p of u(o))if(!d.call(C,p))t(C,p,{get:i.bind(o,p),enumerable:!0});if(n)f.set(o,C);return C},I=(o)=>{var r=(c??=new WeakMap).get(o),e;if(r)return r;if(r=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of u(o))if(!d.call(r,n))t(r,n,{get:i.bind(o,n),enumerable:!(e=y(o,n))||e.enumerable})}return c.set(o,r),r},c;var b=(o)=>o;function w(o,r){this[o]=b.bind(null,r)}var v=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0,configurable:!0,set:w.bind(r,e)})};var M={};v(M,{CentralIconBase:()=>a});module.exports=I(M);var x=B(require("react")),P=require("react-native-svg"),a=({children:o,size:r=24,...e})=>{return x.default.createElement(P.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 V={};v(V,{default:()=>Z,IconFolderCloud:()=>g});module.exports=I(V);var l=B(require("react"));var m=require("react-native-svg"),g=(o)=>{return l.default.createElement(a,{...o},l.default.createElement(m.Path,{d:"M4 3C2.89543 3 2 3.89543 2 5V11.4104C2.94697 10.8328 4.05962 10.5 5.25 10.5C6.92339 10.5 8.44209 11.1588 9.56098 12.2252C11.8386 12.8985 13.5 15.0038 13.5 17.5C13.5 18.4002 13.2837 19.2499 12.9003 20H20C21.1046 20 22 19.1046 22 18V8C22 6.89543 21.1046 6 20 6H12.5352L11.1289 3.8906C10.758 3.3342 10.1335 3 9.46482 3H4Z",fill:"currentColor"}),l.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M5.25 12.5C2.90279 12.5 1 14.4028 1 16.75C1 19.0972 2.90279 21 5.25 21H8C9.933 21 11.5 19.433 11.5 17.5C11.5 15.7446 10.2077 14.2911 8.52265 14.0388C7.74466 13.1005 6.56843 12.5 5.25 12.5Z",fill:"currentColor"}))},Z=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=C7A1A882B296139564756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconFolderCloud/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 IconFolderCloud: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 3C2.89543 3 2 3.89543 2 5V11.4104C2.94697 10.8328 4.05962 10.5 5.25 10.5C6.92339 10.5 8.44209 11.1588 9.56098 12.2252C11.8386 12.8985 13.5 15.0038 13.5 17.5C13.5 18.4002 13.2837 19.2499 12.9003 20H20C21.1046 20 22 19.1046 22 18V8C22 6.89543 21.1046 6 20 6H12.5352L11.1289 3.8906C10.758 3.3342 10.1335 3 9.46482 3H4Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.25 12.5C2.90279 12.5 1 14.4028 1 16.75C1 19.0972 2.90279 21 5.25 21H8C9.933 21 11.5 19.433 11.5 17.5C11.5 15.7446 10.2077 14.2911 8.52265 14.0388C7.74466 13.1005 6.56843 12.5 5.25 12.
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFolderCloud: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 3C2.89543 3 2 3.89543 2 5V11.4104C2.94697 10.8328 4.05962 10.5 5.25 10.5C6.92339 10.5 8.44209 11.1588 9.56098 12.2252C11.8386 12.8985 13.5 15.0038 13.5 17.5C13.5 18.4002 13.2837 19.2499 12.9003 20H20C21.1046 20 22 19.1046 22 18V8C22 6.89543 21.1046 6 20 6H12.5352L11.1289 3.8906C10.758 3.3342 10.1335 3 9.46482 3H4Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.25 12.5C2.90279 12.5 1 14.4028 1 16.75C1 19.0972 2.90279 21 5.25 21H8C9.933 21 11.5 19.433 11.5 17.5C11.5 15.7446 10.2077 14.2911 8.52265 14.0388C7.74466 13.1005 6.56843 12.5 5.25 12.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFolderCloud;\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,2ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA4C,CAAC,IAAU,CAClE,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,2ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA4C,CAAC,IAAU,CAClE,OAAO,wBAA8nB,EAA9nB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,iUAAiU,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+LAA+L,KAAK,eAAc,CAAI,GAGxnB",
|
|
9
|
+
"debugId": "C7A1A882B296139564756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import l from"react";import{Svg as p}from"react-native-svg";var
|
|
1
|
+
import l from"react";import{Svg as p}from"react-native-svg";var n=({children:r,size:o=24,...C})=>{return l.createElement(p,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import e from"react";import{Path as t}from"react-native-svg";var a=(r)=>{return e.createElement(n,{...r},e.createElement(t,{d:"M4 3C2.89543 3 2 3.89543 2 5V11.4104C2.94697 10.8328 4.05962 10.5 5.25 10.5C6.92339 10.5 8.44209 11.1588 9.56098 12.2252C11.8386 12.8985 13.5 15.0038 13.5 17.5C13.5 18.4002 13.2837 19.2499 12.9003 20H20C21.1046 20 22 19.1046 22 18V8C22 6.89543 21.1046 6 20 6H12.5352L11.1289 3.8906C10.758 3.3342 10.1335 3 9.46482 3H4Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M5.25 12.5C2.90279 12.5 1 14.4028 1 16.75C1 19.0972 2.90279 21 5.25 21H8C9.933 21 11.5 19.433 11.5 17.5C11.5 15.7446 10.2077 14.2911 8.52265 14.0388C7.74466 13.1005 6.56843 12.5 5.25 12.5Z",fill:"currentColor"}))},x=a;export{x as default,a as IconFolderCloud};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=66C8322C875D38E764756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconFolderCloud/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 IconFolderCloud: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 3C2.89543 3 2 3.89543 2 5V11.4104C2.94697 10.8328 4.05962 10.5 5.25 10.5C6.92339 10.5 8.44209 11.1588 9.56098 12.2252C11.8386 12.8985 13.5 15.0038 13.5 17.5C13.5 18.4002 13.2837 19.2499 12.9003 20H20C21.1046 20 22 19.1046 22 18V8C22 6.89543 21.1046 6 20 6H12.5352L11.1289 3.8906C10.758 3.3342 10.1335 3 9.46482 3H4Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.25 12.5C2.90279 12.5 1 14.4028 1 16.75C1 19.0972 2.90279 21 5.25 21H8C9.933 21 11.5 19.433 11.5 17.5C11.5 15.7446 10.2077 14.2911 8.52265 14.0388C7.74466 13.1005 6.56843 12.5 5.25 12.
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFolderCloud: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4 3C2.89543 3 2 3.89543 2 5V11.4104C2.94697 10.8328 4.05962 10.5 5.25 10.5C6.92339 10.5 8.44209 11.1588 9.56098 12.2252C11.8386 12.8985 13.5 15.0038 13.5 17.5C13.5 18.4002 13.2837 19.2499 12.9003 20H20C21.1046 20 22 19.1046 22 18V8C22 6.89543 21.1046 6 20 6H12.5352L11.1289 3.8906C10.758 3.3342 10.1335 3 9.46482 3H4Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.25 12.5C2.90279 12.5 1 14.4028 1 16.75C1 19.0972 2.90279 21 5.25 21H8C9.933 21 11.5 19.433 11.5 17.5C11.5 15.7446 10.2077 14.2911 8.52265 14.0388C7.74466 13.1005 6.56843 12.5 5.25 12.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFolderCloud;\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,EAA4C,CAAC,IAAU,CAClE,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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAA8nB,EAA9nB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,iUAAiU,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+LAA+L,KAAK,eAAc,CAAI,GAGxnB",
|
|
9
|
+
"debugId": "66C8322C875D38E764756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconMoveFolder/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var H=Object.create;var{getPrototypeOf:d,defineProperty:C,getOwnPropertyNames:L,getOwnPropertyDescriptor:F}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var h,y,B=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var s=o?h??=new WeakMap:y??=new WeakMap,f=s.get(r);if(f)return f}e=r!=null?H(d(r)):{};let n=o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e;for(let l of L(r))if(!i.call(n,l))C(n,l,{get:u.bind(r,l),enumerable:!0});if(t)s.set(r,n);return n},I=(r)=>{var o=(c??=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 L(r))if(!i.call(o,t))C(o,t,{get:u.bind(r,t),enumerable:!(e=F(r,t))||e.enumerable})}return c.set(r,o),o},c;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var x=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var M={};x(M,{CentralIconBase:()=>a});module.exports=I(M);var P=B(require("react")),g=require("react-native-svg"),a=({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 w={};x(w,{default:()=>V,IconMoveFolder:()=>v});module.exports=I(w);var p=B(require("react"));var m=require("react-native-svg"),v=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M18.293 13.293C18.6835 12.9024 19.3165 12.9024 19.707 13.293L22.707 16.293C23.0976 16.6835 23.0976 17.3165 22.707 17.707L19.707 20.707C19.3165 21.0976 18.6835 21.0976 18.293 20.707C17.9024 20.3165 17.9024 19.6835 18.293 19.293L19.5859 18H15C14.4477 18 14 17.5523 14 17C14 16.4477 14.4477 16 15 16H19.5859L18.293 14.707C17.9024 14.3165 17.9024 13.6835 18.293 13.293Z",fill:"currentColor"}),p.default.createElement(m.Path,{d:"M9.46484 3C10.1335 3.00001 10.758 3.33424 11.1289 3.89062L11.9414 5.10938C12.3123 5.66575 12.9368 5.99997 13.6055 6H20C21.1046 6 22 6.89543 22 8V12.7578L21.1211 11.8789C19.986 10.7438 18.1679 10.7081 16.9902 11.7725L16.8789 11.8789C16.2931 12.4647 16 13.2323 16 14H15C13.3949 14 12.0842 15.2605 12.0039 16.8457L12 17L12.0039 17.1543C12.0843 18.7394 13.3949 20 15 20H4C2.89543 20 2 19.1046 2 18V5C2 3.89543 2.89543 3 4 3H9.46484Z",fill:"currentColor"}))},V=v;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=D7FFB1A0E756E87264756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconMoveFolder/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 IconMoveFolder: 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 IconMoveFolder: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M18.293 13.293C18.6835 12.9024 19.3165 12.9024 19.707 13.293L22.707 16.293C23.0976 16.6835 23.0976 17.3165 22.707 17.707L19.707 20.707C19.3165 21.0976 18.6835 21.0976 18.293 20.707C17.9024 20.3165 17.9024 19.6835 18.293 19.293L19.5859 18H15C14.4477 18 14 17.5523 14 17C14 16.4477 14.4477 16 15 16H19.5859L18.293 14.707C17.9024 14.3165 17.9024 13.6835 18.293 13.293Z\" fill=\"currentColor\"/><Path d=\"M9.46484 3C10.1335 3.00001 10.758 3.33424 11.1289 3.89062L11.9414 5.10938C12.3123 5.66575 12.9368 5.99997 13.6055 6H20C21.1046 6 22 6.89543 22 8V12.7578L21.1211 11.8789C19.986 10.7438 18.1679 10.7081 16.9902 11.7725L16.8789 11.8789C16.2931 12.4647 16 13.2323 16 14H15C13.3949 14 12.0842 15.2605 12.0039 16.8457L12 17L12.0039 17.1543C12.0843 18.7394 13.3949 20 15 20H4C2.89543 20 2 19.1046 2 18V5C2 3.89543 2.89543 3 4 3H9.46484Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMoveFolder;\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,wBAAu3B,EAAv3B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,gXAAgX,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+aAA+a,KAAK,eAAc,CAAI,GAGj3B",
|
|
9
|
+
"debugId": "D7FFB1A0E756E87264756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconMoveFolder/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import p from"react";import{Svg as l}from"react-native-svg";var t=({children:o,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"},o)};import e from"react";import{Path as C}from"react-native-svg";var a=(o)=>{return e.createElement(t,{...o},e.createElement(C,{d:"M18.293 13.293C18.6835 12.9024 19.3165 12.9024 19.707 13.293L22.707 16.293C23.0976 16.6835 23.0976 17.3165 22.707 17.707L19.707 20.707C19.3165 21.0976 18.6835 21.0976 18.293 20.707C17.9024 20.3165 17.9024 19.6835 18.293 19.293L19.5859 18H15C14.4477 18 14 17.5523 14 17C14 16.4477 14.4477 16 15 16H19.5859L18.293 14.707C17.9024 14.3165 17.9024 13.6835 18.293 13.293Z",fill:"currentColor"}),e.createElement(C,{d:"M9.46484 3C10.1335 3.00001 10.758 3.33424 11.1289 3.89062L11.9414 5.10938C12.3123 5.66575 12.9368 5.99997 13.6055 6H20C21.1046 6 22 6.89543 22 8V12.7578L21.1211 11.8789C19.986 10.7438 18.1679 10.7081 16.9902 11.7725L16.8789 11.8789C16.2931 12.4647 16 13.2323 16 14H15C13.3949 14 12.0842 15.2605 12.0039 16.8457L12 17L12.0039 17.1543C12.0843 18.7394 13.3949 20 15 20H4C2.89543 20 2 19.1046 2 18V5C2 3.89543 2.89543 3 4 3H9.46484Z",fill:"currentColor"}))},P=a;export{P as default,a as IconMoveFolder};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=F529CB12356032D064756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconMoveFolder/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 IconMoveFolder: 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 IconMoveFolder: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M18.293 13.293C18.6835 12.9024 19.3165 12.9024 19.707 13.293L22.707 16.293C23.0976 16.6835 23.0976 17.3165 22.707 17.707L19.707 20.707C19.3165 21.0976 18.6835 21.0976 18.293 20.707C17.9024 20.3165 17.9024 19.6835 18.293 19.293L19.5859 18H15C14.4477 18 14 17.5523 14 17C14 16.4477 14.4477 16 15 16H19.5859L18.293 14.707C17.9024 14.3165 17.9024 13.6835 18.293 13.293Z\" fill=\"currentColor\"/><Path d=\"M9.46484 3C10.1335 3.00001 10.758 3.33424 11.1289 3.89062L11.9414 5.10938C12.3123 5.66575 12.9368 5.99997 13.6055 6H20C21.1046 6 22 6.89543 22 8V12.7578L21.1211 11.8789C19.986 10.7438 18.1679 10.7081 16.9902 11.7725L16.8789 11.8789C16.2931 12.4647 16 13.2323 16 14H15C13.3949 14 12.0842 15.2605 12.0039 16.8457L12 17L12.0039 17.1543C12.0843 18.7394 13.3949 20 15 20H4C2.89543 20 2 19.1046 2 18V5C2 3.89543 2.89543 3 4 3H9.46484Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMoveFolder;\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,gBAAu3B,EAAv3B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,gXAAgX,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+aAA+a,KAAK,eAAc,CAAI,GAGj3B",
|
|
9
|
+
"debugId": "F529CB12356032D064756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var v=Object.create;var{getPrototypeOf:H,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:F}=Object,I=Object.prototype.hasOwnProperty;function u(r){return this[r]}var h,y,B=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var s=o?h??=new WeakMap:y??=new WeakMap,f=s.get(r);if(f)return f}e=r!=null?v(H(r)):{};let C=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let l of i(r))if(!I.call(C,l))n(C,l,{get:u.bind(r,l),enumerable:!0});if(t)s.set(r,C);return C},L=(r)=>{var o=(c??=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 i(r))if(!I.call(o,t))n(o,t,{get:u.bind(r,t),enumerable:!(e=F(r,t))||e.enumerable})}return c.set(r,o),o},c;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var x=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var M={};x(M,{CentralIconBase:()=>a});module.exports=L(M);var P=B(require("react")),d=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return P.default.createElement(d.Svg,{...e,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var w={};x(w,{default:()=>V,IconMoveFolderInside:()=>g});module.exports=L(w);var p=B(require("react"));var m=require("react-native-svg"),g=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M17.293 13.293C17.6835 12.9024 18.3165 12.9024 18.707 13.293C19.0976 13.6835 19.0976 14.3165 18.707 14.707L17.4141 16H22C22.5523 16 23 16.4477 23 17C23 17.5523 22.5523 18 22 18H17.4141L18.707 19.293C19.0976 19.6835 19.0976 20.3165 18.707 20.707C18.3165 21.0976 17.6835 21.0976 17.293 20.707L14.293 17.707C13.9024 17.3165 13.9024 16.6835 14.293 16.293L17.293 13.293Z",fill:"currentColor"}),p.default.createElement(m.Path,{d:"M9.46484 3C10.1335 3.00001 10.758 3.33424 11.1289 3.89062L11.9414 5.10938C12.3123 5.66575 12.9368 5.99997 13.6055 6H20C21.1046 6 22 6.89543 22 8V14H21C21 13.2323 20.7068 12.4647 20.1211 11.8789L20.0098 11.7725C18.8321 10.7081 17.014 10.7439 15.8789 11.8789L12.8789 14.8789C11.7074 16.0505 11.7073 17.9495 12.8789 19.1211L13.7578 20H4C2.89543 20 2 19.1046 2 18V5C2 3.89543 2.89543 3 4 3H9.46484Z",fill:"currentColor"}))},V=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=F57B62824FFE614F64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconMoveFolderInside/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 IconMoveFolderInside: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M17.293 13.293C17.6835 12.9024 18.3165 12.9024 18.707 13.293C19.0976 13.6835 19.0976 14.3165 18.707 14.707L17.4141 16H22C22.5523 16 23 16.4477 23 17C23 17.5523 22.5523 18 22 18H17.4141L18.707 19.293C19.0976 19.6835 19.0976 20.3165 18.707 20.707C18.3165 21.0976 17.6835 21.0976 17.293 20.707L14.293 17.707C13.9024 17.3165 13.9024 16.6835 14.293 16.293L17.293 13.293Z\" fill=\"currentColor\"/><Path d=\"M9.46484 3C10.1335 3.00001 10.758 3.33424 11.1289 3.89062L11.9414 5.10938C12.3123 5.66575 12.9368 5.99997 13.6055 6H20C21.1046 6 22 6.89543 22 8V14H21C21 13.2323 20.7068 12.4647 20.1211 11.8789L20.0098 11.7725C18.8321 10.7081 17.014 10.7439 15.8789 11.8789L12.8789 14.8789C11.7074 16.0505 11.7073 17.9495 12.8789 19.1211L13.7578 20H4C2.89543 20 2 19.1046 2 18V5C2 3.89543 2.89543 3 4 3H9.46484Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMoveFolderInside;\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,gFCvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAiD,CAAC,IAAU,CACvE,OAAO,wBAAq1B,EAAr1B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,gXAAgX,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6YAA6Y,KAAK,eAAc,CAAI,GAG/0B",
|
|
9
|
+
"debugId": "F57B62824FFE614F64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as l}from"react-native-svg";var t=({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 e from"react";import{Path as n}from"react-native-svg";var a=(o)=>{return e.createElement(t,{...o},e.createElement(n,{d:"M17.293 13.293C17.6835 12.9024 18.3165 12.9024 18.707 13.293C19.0976 13.6835 19.0976 14.3165 18.707 14.707L17.4141 16H22C22.5523 16 23 16.4477 23 17C23 17.5523 22.5523 18 22 18H17.4141L18.707 19.293C19.0976 19.6835 19.0976 20.3165 18.707 20.707C18.3165 21.0976 17.6835 21.0976 17.293 20.707L14.293 17.707C13.9024 17.3165 13.9024 16.6835 14.293 16.293L17.293 13.293Z",fill:"currentColor"}),e.createElement(n,{d:"M9.46484 3C10.1335 3.00001 10.758 3.33424 11.1289 3.89062L11.9414 5.10938C12.3123 5.66575 12.9368 5.99997 13.6055 6H20C21.1046 6 22 6.89543 22 8V14H21C21 13.2323 20.7068 12.4647 20.1211 11.8789L20.0098 11.7725C18.8321 10.7081 17.014 10.7439 15.8789 11.8789L12.8789 14.8789C11.7074 16.0505 11.7073 17.9495 12.8789 19.1211L13.7578 20H4C2.89543 20 2 19.1046 2 18V5C2 3.89543 2.89543 3 4 3H9.46484Z",fill:"currentColor"}))},P=a;export{P as default,a as IconMoveFolderInside};
|
|
2
|
+
|
|
3
|
+
//# debugId=CB527754CB8D5BE164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconMoveFolderInside/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 IconMoveFolderInside: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M17.293 13.293C17.6835 12.9024 18.3165 12.9024 18.707 13.293C19.0976 13.6835 19.0976 14.3165 18.707 14.707L17.4141 16H22C22.5523 16 23 16.4477 23 17C23 17.5523 22.5523 18 22 18H17.4141L18.707 19.293C19.0976 19.6835 19.0976 20.3165 18.707 20.707C18.3165 21.0976 17.6835 21.0976 17.293 20.707L14.293 17.707C13.9024 17.3165 13.9024 16.6835 14.293 16.293L17.293 13.293Z\" fill=\"currentColor\"/><Path d=\"M9.46484 3C10.1335 3.00001 10.758 3.33424 11.1289 3.89062L11.9414 5.10938C12.3123 5.66575 12.9368 5.99997 13.6055 6H20C21.1046 6 22 6.89543 22 8V14H21C21 13.2323 20.7068 12.4647 20.1211 11.8789L20.0098 11.7725C18.8321 10.7081 17.014 10.7439 15.8789 11.8789L12.8789 14.8789C11.7074 16.0505 11.7073 17.9495 12.8789 19.1211L13.7578 20H4C2.89543 20 2 19.1046 2 18V5C2 3.89543 2.89543 3 4 3H9.46484Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMoveFolderInside;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAq1B,EAAr1B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,gXAAgX,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6YAA6Y,KAAK,eAAc,CAAI,GAG/0B",
|
|
9
|
+
"debugId": "CB527754CB8D5BE164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var Z=Object.create;var{getPrototypeOf:v,defineProperty:t,getOwnPropertyNames:c,getOwnPropertyDescriptor:x}=Object,s=Object.prototype.hasOwnProperty;function a(r){return this[r]}var g,h,H=(r,o,C)=>{var e=r!=null&&typeof r==="object";if(e){var u=o?g??=new WeakMap:h??=new WeakMap,d=u.get(r);if(d)return d}C=r!=null?Z(v(r)):{};let p=o||!r||!r.__esModule?t(C,"default",{value:r,enumerable:!0}):C;for(let f of c(r))if(!s.call(p,f))t(p,f,{get:a.bind(r,f),enumerable:!0});if(e)u.set(r,p);return p},B=(r)=>{var o=(m??=new WeakMap).get(r),C;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!s.call(o,e))t(o,e,{get:a.bind(r,e),enumerable:!(C=x(r,e))||C.enumerable})}return m.set(r,o),o},m;var y=(r)=>r;function F(r,o){this[r]=y.bind(null,o)}var I=(r,o)=>{for(var C in o)t(r,C,{get:o[C],enumerable:!0,configurable:!0,set:F.bind(o,C)})};var S={};I(S,{CentralIconBase:()=>i});module.exports=B(S);var L=H(require("react")),M=require("react-native-svg"),i=({children:r,size:o=24,...C})=>{return L.default.createElement(M.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 b={};I(b,{default:()=>w,IconPhoneHaptic2:()=>P});module.exports=B(b);var l=H(require("react"));var n=require("react-native-svg"),P=(r)=>{return l.default.createElement(i,{...r},l.default.createElement(n.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.999 3C17.1036 3 17.999 3.89543 17.999 5V19C17.999 20.1046 17.1036 21 15.999 21H7.99902C6.89445 21 5.99902 20.1046 5.99902 19V5C5.99902 3.89543 6.89445 3 7.99902 3H15.999ZM10.999 5C10.4467 5 9.99902 5.44772 9.99902 6C9.99902 6.55228 10.4467 7 10.999 7H12.999C13.5513 7 13.999 6.55228 13.999 6C13.999 5.44772 13.5513 5 12.999 5H10.999Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M4.07031 15.3496C4.55056 15.0772 5.16099 15.2464 5.43359 15.7266C5.70594 16.2068 5.53782 16.8173 5.05762 17.0898L3.67676 17.873C3.19655 18.1452 2.58599 17.9771 2.31348 17.4971C2.04098 17.0168 2.21029 16.4064 2.69043 16.1338L4.07031 15.3496Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M18.5635 15.7266C18.836 15.2465 19.4466 15.0776 19.9268 15.3496L21.3076 16.1338C21.7878 16.4065 21.9562 17.0168 21.6836 17.4971C21.4109 17.9771 20.8005 18.1455 20.3203 17.873L18.9404 17.0898C18.4605 16.8173 18.2914 16.2067 18.5635 15.7266Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M3.74902 11C4.30131 11 4.74902 11.4477 4.74902 12C4.74902 12.5523 4.30131 13 3.74902 13H1.86328C1.311 13 0.863281 12.5523 0.863281 12C0.863281 11.4477 1.311 11 1.86328 11H3.74902Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M22.1348 11C22.687 11 23.1348 11.4477 23.1348 12C23.1348 12.5523 22.687 13 22.1348 13H20.249C19.6967 13 19.249 12.5523 19.249 12C19.249 11.4477 19.6967 11 20.249 11H22.1348Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M2.31348 6.50391C2.58599 6.02377 3.19652 5.85476 3.67676 6.12695L5.05762 6.91113C5.53774 7.18381 5.70616 7.79418 5.43359 8.27441C5.16081 8.75414 4.55037 8.92277 4.07031 8.65039L2.69043 7.86719C2.21045 7.59476 2.04166 6.98407 2.31348 6.50391Z",fill:"currentColor"}),l.default.createElement(n.Path,{d:"M20.3203 6.12695C20.8006 5.8545 21.411 6.02366 21.6836 6.50391C21.9557 6.98413 21.7877 7.59469 21.3076 7.86719L19.9268 8.65039C19.4467 8.92229 18.836 8.75421 18.5635 8.27441C18.2909 7.79423 18.4604 7.18385 18.9404 6.91113L20.3203 6.12695Z",fill:"currentColor"}))},w=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=C9344DBD8799BEFB64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPhoneHaptic2/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 IconPhoneHaptic2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.999 3C17.1036 3 17.999 3.89543 17.999 5V19C17.999 20.1046 17.1036 21 15.999 21H7.99902C6.89445 21 5.99902 20.1046 5.99902 19V5C5.99902 3.89543 6.89445 3 7.99902 3H15.999ZM10.999 5C10.4467 5 9.99902 5.44772 9.99902 6C9.99902 6.55228 10.4467 7 10.999 7H12.999C13.5513 7 13.999 6.55228 13.999 6C13.999 5.44772 13.5513 5 12.999 5H10.999Z\" fill=\"currentColor\"/><Path d=\"M4.07031 15.3496C4.55056 15.0772 5.16099 15.2464 5.43359 15.7266C5.70594 16.2068 5.53782 16.8173 5.05762 17.0898L3.67676 17.873C3.19655 18.1452 2.58599 17.9771 2.31348 17.4971C2.04098 17.0168 2.21029 16.4064 2.69043 16.1338L4.07031 15.3496Z\" fill=\"currentColor\"/><Path d=\"M18.5635 15.7266C18.836 15.2465 19.4466 15.0776 19.9268 15.3496L21.3076 16.1338C21.7878 16.4065 21.9562 17.0168 21.6836 17.4971C21.4109 17.9771 20.8005 18.1455 20.3203 17.873L18.9404 17.0898C18.4605 16.8173 18.2914 16.2067 18.5635 15.7266Z\" fill=\"currentColor\"/><Path d=\"M3.74902 11C4.30131 11 4.74902 11.4477 4.74902 12C4.74902 12.5523 4.30131 13 3.74902 13H1.86328C1.311 13 0.863281 12.5523 0.863281 12C0.863281 11.4477 1.311 11 1.86328 11H3.74902Z\" fill=\"currentColor\"/><Path d=\"M22.1348 11C22.687 11 23.1348 11.4477 23.1348 12C23.1348 12.5523 22.687 13 22.1348 13H20.249C19.6967 13 19.249 12.5523 19.249 12C19.249 11.4477 19.6967 11 20.249 11H22.1348Z\" fill=\"currentColor\"/><Path d=\"M2.31348 6.50391C2.58599 6.02377 3.19652 5.85476 3.67676 6.12695L5.05762 6.91113C5.53774 7.18381 5.70616 7.79418 5.43359 8.27441C5.16081 8.75414 4.55037 8.92277 4.07031 8.65039L2.69043 7.86719C2.21045 7.59476 2.04166 6.98407 2.31348 6.50391Z\" fill=\"currentColor\"/><Path d=\"M20.3203 6.12695C20.8006 5.8545 21.411 6.02366 21.6836 6.50391C21.9557 6.98413 21.7877 7.59469 21.3076 7.86719L19.9268 8.65039C19.4467 8.92229 18.836 8.75421 18.5635 8.27441C18.2909 7.79423 18.4604 7.18385 18.9404 6.91113L20.3203 6.12695Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPhoneHaptic2;\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,4ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA6C,CAAC,IAAU,CACnE,OAAO,wBAAm5D,EAAn5D,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oVAAoV,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mPAAmP,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sLAAsL,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,gLAAgL,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iPAAiP,KAAK,eAAc,CAAI,GAG74D",
|
|
9
|
+
"debugId": "C9344DBD8799BEFB64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import t from"react";import{Svg as p}from"react-native-svg";var n=({children:l,size:C=24,...e})=>{return t.createElement(p,{...e,width:typeof C==="number"?`${C}px`:C,height:typeof C==="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},l)};import r from"react";import{Path as o}from"react-native-svg";var f=(l)=>{return r.createElement(n,{...l},r.createElement(o,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.999 3C17.1036 3 17.999 3.89543 17.999 5V19C17.999 20.1046 17.1036 21 15.999 21H7.99902C6.89445 21 5.99902 20.1046 5.99902 19V5C5.99902 3.89543 6.89445 3 7.99902 3H15.999ZM10.999 5C10.4467 5 9.99902 5.44772 9.99902 6C9.99902 6.55228 10.4467 7 10.999 7H12.999C13.5513 7 13.999 6.55228 13.999 6C13.999 5.44772 13.5513 5 12.999 5H10.999Z",fill:"currentColor"}),r.createElement(o,{d:"M4.07031 15.3496C4.55056 15.0772 5.16099 15.2464 5.43359 15.7266C5.70594 16.2068 5.53782 16.8173 5.05762 17.0898L3.67676 17.873C3.19655 18.1452 2.58599 17.9771 2.31348 17.4971C2.04098 17.0168 2.21029 16.4064 2.69043 16.1338L4.07031 15.3496Z",fill:"currentColor"}),r.createElement(o,{d:"M18.5635 15.7266C18.836 15.2465 19.4466 15.0776 19.9268 15.3496L21.3076 16.1338C21.7878 16.4065 21.9562 17.0168 21.6836 17.4971C21.4109 17.9771 20.8005 18.1455 20.3203 17.873L18.9404 17.0898C18.4605 16.8173 18.2914 16.2067 18.5635 15.7266Z",fill:"currentColor"}),r.createElement(o,{d:"M3.74902 11C4.30131 11 4.74902 11.4477 4.74902 12C4.74902 12.5523 4.30131 13 3.74902 13H1.86328C1.311 13 0.863281 12.5523 0.863281 12C0.863281 11.4477 1.311 11 1.86328 11H3.74902Z",fill:"currentColor"}),r.createElement(o,{d:"M22.1348 11C22.687 11 23.1348 11.4477 23.1348 12C23.1348 12.5523 22.687 13 22.1348 13H20.249C19.6967 13 19.249 12.5523 19.249 12C19.249 11.4477 19.6967 11 20.249 11H22.1348Z",fill:"currentColor"}),r.createElement(o,{d:"M2.31348 6.50391C2.58599 6.02377 3.19652 5.85476 3.67676 6.12695L5.05762 6.91113C5.53774 7.18381 5.70616 7.79418 5.43359 8.27441C5.16081 8.75414 4.55037 8.92277 4.07031 8.65039L2.69043 7.86719C2.21045 7.59476 2.04166 6.98407 2.31348 6.50391Z",fill:"currentColor"}),r.createElement(o,{d:"M20.3203 6.12695C20.8006 5.8545 21.411 6.02366 21.6836 6.50391C21.9557 6.98413 21.7877 7.59469 21.3076 7.86719L19.9268 8.65039C19.4467 8.92229 18.836 8.75421 18.5635 8.27441C18.2909 7.79423 18.4604 7.18385 18.9404 6.91113L20.3203 6.12695Z",fill:"currentColor"}))},L=f;export{L as default,f as IconPhoneHaptic2};
|
|
2
|
+
|
|
3
|
+
//# debugId=45DFAC65AD054CF164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconPhoneHaptic2/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 IconPhoneHaptic2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.999 3C17.1036 3 17.999 3.89543 17.999 5V19C17.999 20.1046 17.1036 21 15.999 21H7.99902C6.89445 21 5.99902 20.1046 5.99902 19V5C5.99902 3.89543 6.89445 3 7.99902 3H15.999ZM10.999 5C10.4467 5 9.99902 5.44772 9.99902 6C9.99902 6.55228 10.4467 7 10.999 7H12.999C13.5513 7 13.999 6.55228 13.999 6C13.999 5.44772 13.5513 5 12.999 5H10.999Z\" fill=\"currentColor\"/><Path d=\"M4.07031 15.3496C4.55056 15.0772 5.16099 15.2464 5.43359 15.7266C5.70594 16.2068 5.53782 16.8173 5.05762 17.0898L3.67676 17.873C3.19655 18.1452 2.58599 17.9771 2.31348 17.4971C2.04098 17.0168 2.21029 16.4064 2.69043 16.1338L4.07031 15.3496Z\" fill=\"currentColor\"/><Path d=\"M18.5635 15.7266C18.836 15.2465 19.4466 15.0776 19.9268 15.3496L21.3076 16.1338C21.7878 16.4065 21.9562 17.0168 21.6836 17.4971C21.4109 17.9771 20.8005 18.1455 20.3203 17.873L18.9404 17.0898C18.4605 16.8173 18.2914 16.2067 18.5635 15.7266Z\" fill=\"currentColor\"/><Path d=\"M3.74902 11C4.30131 11 4.74902 11.4477 4.74902 12C4.74902 12.5523 4.30131 13 3.74902 13H1.86328C1.311 13 0.863281 12.5523 0.863281 12C0.863281 11.4477 1.311 11 1.86328 11H3.74902Z\" fill=\"currentColor\"/><Path d=\"M22.1348 11C22.687 11 23.1348 11.4477 23.1348 12C23.1348 12.5523 22.687 13 22.1348 13H20.249C19.6967 13 19.249 12.5523 19.249 12C19.249 11.4477 19.6967 11 20.249 11H22.1348Z\" fill=\"currentColor\"/><Path d=\"M2.31348 6.50391C2.58599 6.02377 3.19652 5.85476 3.67676 6.12695L5.05762 6.91113C5.53774 7.18381 5.70616 7.79418 5.43359 8.27441C5.16081 8.75414 4.55037 8.92277 4.07031 8.65039L2.69043 7.86719C2.21045 7.59476 2.04166 6.98407 2.31348 6.50391Z\" fill=\"currentColor\"/><Path d=\"M20.3203 6.12695C20.8006 5.8545 21.411 6.02366 21.6836 6.50391C21.9557 6.98413 21.7877 7.59469 21.3076 7.86719L19.9268 8.65039C19.4467 8.92229 18.836 8.75421 18.5635 8.27441C18.2909 7.79423 18.4604 7.18385 18.9404 6.91113L20.3203 6.12695Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPhoneHaptic2;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAm5D,EAAn5D,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oVAAoV,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mPAAmP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sLAAsL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gLAAgL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iPAAiP,KAAK,eAAc,CAAI,GAG74D",
|
|
9
|
+
"debugId": "45DFAC65AD054CF164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/README.md
CHANGED
|
@@ -692,6 +692,7 @@ Below is a complete list of available icons:
|
|
|
692
692
|
- IconDevices2
|
|
693
693
|
- IconTorch
|
|
694
694
|
- IconPrinter2
|
|
695
|
+
- IconPhoneHaptic2
|
|
695
696
|
|
|
696
697
|
### Edit
|
|
697
698
|
|
|
@@ -926,6 +927,7 @@ Below is a complete list of available icons:
|
|
|
926
927
|
- IconFileArrowRightIn
|
|
927
928
|
- IconFileArrowRightOut
|
|
928
929
|
- IconFolderOpenFront
|
|
930
|
+
- IconMoveFolderInside
|
|
929
931
|
|
|
930
932
|
### Food
|
|
931
933
|
|