@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.314 → 1.1.315
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/IconQuestionmark/index.d.ts +4 -0
- package/IconQuestionmark/index.js +3 -0
- package/IconQuestionmark/index.js.map +11 -0
- package/IconQuestionmark/index.mjs +3 -0
- package/IconQuestionmark/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 w=Object.create;var{getPrototypeOf:P,defineProperty:i,getOwnPropertyNames:c,getOwnPropertyDescriptor:y}=Object,h=Object.prototype.hasOwnProperty;function k(r){return this[r]}var v,S,g=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var a=o?v??=new WeakMap:S??=new WeakMap,p=a.get(r);if(p)return p}e=r!=null?w(P(r)):{};let l=o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e;for(let C of c(r))if(!h.call(l,C))i(l,C,{get:k.bind(r,C),enumerable:!0});if(t)a.set(r,l);return l},x=(r)=>{var o=(f??=new WeakMap).get(r),e;if(o)return o;if(o=i({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of c(r))if(!h.call(o,t))i(o,t,{get:k.bind(r,t),enumerable:!(e=y(r,t))||e.enumerable})}return f.set(r,o),o},f;var b=(r)=>r;function M(r,o){this[r]=b.bind(null,o)}var I=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0,configurable:!0,set:M.bind(o,e)})};var $={};I($,{CentralIconBase:()=>d});module.exports=x($);var s=g(require("react")),n=require("react-native-svg"),d=({children:r,size:o=24,mode:e="masked",maskId:t,...a})=>{let p=e!=="raw"&&!!t;return s.default.createElement(n.Svg,{...a,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},s.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),s.default.createElement(n.G,{color:"#fff"},r)),s.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):r)};var F={};I(F,{default:()=>G,IconQuestionmark:()=>B});module.exports=x(F);var m=g(require("react"));var u=require("react-native-svg"),B=m.default.memo((r)=>{return m.default.createElement(d,{...r,maskId:"square-outlined-radius-0-stroke-2-IconQuestionmark"},m.default.createElement(u.Path,{d:"M12 15.9998C12 11.5 16 12.3486 16 8.84856C16 3.7312 8 3.59893 8 9.1634",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),m.default.createElement(u.Circle,{cx:"12",cy:"18.7996",r:"1.2",fill:"currentColor"}))}),G=B;
|
|
2
|
+
|
|
3
|
+
//# debugId=7C302849DDD1299864756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconQuestionmark/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconQuestionmark: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconQuestionmark\"><Path d=\"M12 15.9998C12 11.5 16 12.3486 16 8.84856C16 3.7312 8 3.59893 8 9.1634\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"18.7996\" r=\"1.2\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconQuestionmark;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAQa,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBA8BE,MA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gDACE,wBAUE,OAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAA4B,IAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,4EChDY,IAAlB,sBAE6B,IAA7B,8BAEa,EAAqE,UAAM,KAAK,CAAC,IAAU,CACtG,OAAO,wBAAmS,EAAnS,IAAqB,EAAO,OAAO,sDAAqD,wBAAC,OAAD,CAAM,EAAE,yEAAyE,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,CAAI,EAC3S,EAEc",
|
|
9
|
+
"debugId": "7C302849DDD1299864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import r from"react";import{Svg as l,Mask as u,Rect as s,G as C}from"react-native-svg";var i=({children:e,size:o=24,mode:m="masked",maskId:n,...a})=>{let p=m!=="raw"&&!!n;return r.createElement(l,{...a,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?r.createElement(r.Fragment,null,r.createElement(u,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(s,{width:"24",height:"24",fill:"#000"}),r.createElement(C,{color:"#fff"},e)),r.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import t from"react";import{Circle as d,Path as f}from"react-native-svg";var c=t.memo((e)=>{return t.createElement(i,{...e,maskId:"square-outlined-radius-0-stroke-2-IconQuestionmark"},t.createElement(f,{d:"M12 15.9998C12 11.5 16 12.3486 16 8.84856C16 3.7312 8 3.59893 8 9.1634",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),t.createElement(d,{cx:"12",cy:"18.7996",r:"1.2",fill:"currentColor"}))}),v=c;export{v as default,c as IconQuestionmark};
|
|
2
|
+
|
|
3
|
+
//# debugId=FB2547617BA0E91364756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconQuestionmark/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconQuestionmark: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconQuestionmark\"><Path d=\"M12 15.9998C12 11.5 16 12.3486 16 8.84856C16 3.7312 8 3.59893 8 9.1634\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Circle cx=\"12\" cy=\"18.7996\" r=\"1.2\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconQuestionmark;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,iBAAS,UAAQ,yBAEV,IAAM,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAAmS,EAAnS,IAAqB,EAAO,OAAO,sDAAqD,gBAAC,EAAD,CAAM,EAAE,yEAAyE,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,CAAI,EAC3S,EAEc",
|
|
9
|
+
"debugId": "FB2547617BA0E91364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|