@central-icons-react-native/square-filled-radius-0-stroke-1 1.1.273 → 1.1.274
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/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 +1 -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 +1 -0
- package/index.js +3 -0
- package/index.mjs +1 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +2 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var Z=Object.create;var{getPrototypeOf:v,defineProperty:p,getOwnPropertyNames:m,getOwnPropertyDescriptor:x}=Object,c=Object.prototype.hasOwnProperty;function s(r){return this[r]}var g,V,a=(r,o,l)=>{var t=r!=null&&typeof r==="object";if(t){var L=o?g??=new WeakMap:V??=new WeakMap,u=L.get(r);if(u)return u}l=r!=null?Z(v(r)):{};let C=o||!r||!r.__esModule?p(l,"default",{value:r,enumerable:!0}):l;for(let f of m(r))if(!c.call(C,f))p(C,f,{get:s.bind(r,f),enumerable:!0});if(t)L.set(r,C);return C},H=(r)=>{var o=(d??=new WeakMap).get(r),l;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of m(r))if(!c.call(o,t))p(o,t,{get:s.bind(r,t),enumerable:!(l=x(r,t))||l.enumerable})}return d.set(r,o),o},d;var h=(r)=>r;function y(r,o){this[r]=h.bind(null,o)}var B=(r,o)=>{for(var l in o)p(r,l,{get:o[l],enumerable:!0,configurable:!0,set:y.bind(o,l)})};var F={};B(F,{CentralIconBase:()=>i});module.exports=H(F);var I=a(require("react")),M=require("react-native-svg"),i=({children:r,size:o=24,...l})=>{return I.default.createElement(M.Svg,{...l,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var S={};B(S,{default:()=>b,IconPhoneHaptic2:()=>P});module.exports=H(S);var n=a(require("react"));var e=require("react-native-svg"),P=(r)=>{return n.default.createElement(i,{...r},n.default.createElement(e.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M16.999 21H6.99902V3H16.999V21ZM10.999 5C10.7229 5 10.499 5.22386 10.499 5.5C10.499 5.77614 10.7229 6 10.999 6H12.999C13.2752 6 13.499 5.77614 13.499 5.5C13.499 5.22386 13.2752 5 12.999 5H10.999Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M5.24609 16.4082L2.99609 17.6855L2.50195 16.8154L4.75195 15.5391L5.24609 16.4082Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M21.4961 16.8154L21.002 17.6855L18.752 16.4082L19.2461 15.5391L21.4961 16.8154Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M3.99902 12.5H1.36328V11.5H3.99902V12.5Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M22.6348 12.5H19.999V11.5H22.6348V12.5Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M5.24609 7.5918L4.75195 8.46191L2.50195 7.18457L2.99609 6.31543L5.24609 7.5918Z",fill:"currentColor"}),n.default.createElement(e.Path,{d:"M21.4961 7.18457L19.2461 8.46191L18.752 7.5918L21.002 6.31543L21.4961 7.18457Z",fill:"currentColor"}))},b=P;
|
|
2
|
+
|
|
3
|
+
//# debugId=D9C0D7C42FC3ECBC64756E2164756E21
|
|
@@ -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=\"M16.999 21H6.99902V3H16.999V21ZM10.999 5C10.7229 5 10.499 5.22386 10.499 5.5C10.499 5.77614 10.7229 6 10.999 6H12.999C13.2752 6 13.499 5.77614 13.499 5.5C13.499 5.22386 13.2752 5 12.999 5H10.999Z\" fill=\"currentColor\"/><Path d=\"M5.24609 16.4082L2.99609 17.6855L2.50195 16.8154L4.75195 15.5391L5.24609 16.4082Z\" fill=\"currentColor\"/><Path d=\"M21.4961 16.8154L21.002 17.6855L18.752 16.4082L19.2461 15.5391L21.4961 16.8154Z\" fill=\"currentColor\"/><Path d=\"M3.99902 12.5H1.36328V11.5H3.99902V12.5Z\" fill=\"currentColor\"/><Path d=\"M22.6348 12.5H19.999V11.5H22.6348V12.5Z\" fill=\"currentColor\"/><Path d=\"M5.24609 7.5918L4.75195 8.46191L2.50195 7.18457L2.99609 6.31543L5.24609 7.5918Z\" fill=\"currentColor\"/><Path d=\"M21.4961 7.18457L19.2461 8.46191L18.752 7.5918L21.002 6.31543L21.4961 7.18457Z\" 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,wBAAm3B,EAAn3B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sMAAsM,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oFAAoF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kFAAkF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,2CAA2C,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0CAA0C,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kFAAkF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iFAAiF,KAAK,eAAc,CAAI,GAG72B",
|
|
9
|
+
"debugId": "D9C0D7C42FC3ECBC64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as C}from"react-native-svg";var e=({children:n,size:l=24,...t})=>{return p.createElement(C,{...t,width:typeof l==="number"?`${l}px`:l,height:typeof l==="number"?`${l}px`:l,viewBox:"0 0 24 24",fill:"none"},n)};import r from"react";import{Path as o}from"react-native-svg";var f=(n)=>{return r.createElement(e,{...n},r.createElement(o,{fillRule:"evenodd",clipRule:"evenodd",d:"M16.999 21H6.99902V3H16.999V21ZM10.999 5C10.7229 5 10.499 5.22386 10.499 5.5C10.499 5.77614 10.7229 6 10.999 6H12.999C13.2752 6 13.499 5.77614 13.499 5.5C13.499 5.22386 13.2752 5 12.999 5H10.999Z",fill:"currentColor"}),r.createElement(o,{d:"M5.24609 16.4082L2.99609 17.6855L2.50195 16.8154L4.75195 15.5391L5.24609 16.4082Z",fill:"currentColor"}),r.createElement(o,{d:"M21.4961 16.8154L21.002 17.6855L18.752 16.4082L19.2461 15.5391L21.4961 16.8154Z",fill:"currentColor"}),r.createElement(o,{d:"M3.99902 12.5H1.36328V11.5H3.99902V12.5Z",fill:"currentColor"}),r.createElement(o,{d:"M22.6348 12.5H19.999V11.5H22.6348V12.5Z",fill:"currentColor"}),r.createElement(o,{d:"M5.24609 7.5918L4.75195 8.46191L2.50195 7.18457L2.99609 6.31543L5.24609 7.5918Z",fill:"currentColor"}),r.createElement(o,{d:"M21.4961 7.18457L19.2461 8.46191L18.752 7.5918L21.002 6.31543L21.4961 7.18457Z",fill:"currentColor"}))},I=f;export{I as default,f as IconPhoneHaptic2};
|
|
2
|
+
|
|
3
|
+
//# debugId=27900F474A438A2D64756E2164756E21
|
|
@@ -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=\"M16.999 21H6.99902V3H16.999V21ZM10.999 5C10.7229 5 10.499 5.22386 10.499 5.5C10.499 5.77614 10.7229 6 10.999 6H12.999C13.2752 6 13.499 5.77614 13.499 5.5C13.499 5.22386 13.2752 5 12.999 5H10.999Z\" fill=\"currentColor\"/><Path d=\"M5.24609 16.4082L2.99609 17.6855L2.50195 16.8154L4.75195 15.5391L5.24609 16.4082Z\" fill=\"currentColor\"/><Path d=\"M21.4961 16.8154L21.002 17.6855L18.752 16.4082L19.2461 15.5391L21.4961 16.8154Z\" fill=\"currentColor\"/><Path d=\"M3.99902 12.5H1.36328V11.5H3.99902V12.5Z\" fill=\"currentColor\"/><Path d=\"M22.6348 12.5H19.999V11.5H22.6348V12.5Z\" fill=\"currentColor\"/><Path d=\"M5.24609 7.5918L4.75195 8.46191L2.50195 7.18457L2.99609 6.31543L5.24609 7.5918Z\" fill=\"currentColor\"/><Path d=\"M21.4961 7.18457L19.2461 8.46191L18.752 7.5918L21.002 6.31543L21.4961 7.18457Z\" 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,gBAAm3B,EAAn3B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sMAAsM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oFAAoF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kFAAkF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2CAA2C,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0CAA0C,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kFAAkF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iFAAiF,KAAK,eAAc,CAAI,GAG72B",
|
|
9
|
+
"debugId": "27900F474A438A2D64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|