@central-icons-react-native/round-filled-radius-2-stroke-1 1.1.247 → 1.1.248
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/IconIcon/index.d.ts +4 -0
- package/IconIcon/index.js +2 -0
- package/IconIcon/index.js.map +1 -0
- package/IconIcon/index.mjs +2 -0
- package/IconIcon/index.mjs.map +1 -0
- package/README.md +1 -0
- package/filtered-icons.json +14 -0
- package/icons/index.d.ts +1 -0
- package/icons-index.json +5 -3
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +2 -1
- package/tsx-icons.json +7 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var V=Object.create;var t=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var d=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of u(r))!B.call(o,n)&&n!==e&&t(o,n,{get:()=>r[n],enumerable:!(p=i(r,n))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?V(I(o)):{},l(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),v=o=>l(t({},"__esModule",{value:!0}),o);var P={};d(P,{IconIcon:()=>H,default:()=>x});module.exports=v(P);var C=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),s=({children:o,size:r=24,...e})=>m.default.createElement(c.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 f=require("react-native-svg"),H=o=>C.default.createElement(s,{...o},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M14.5 2C15.8807 2 17 3.11929 17 4.5V6H19.5C20.8807 6 22 7.11929 22 8.5V18.5C22 19.8807 20.8807 21 19.5 21H4.5C3.11929 21 2 19.8807 2 18.5V8.5C2 7.11929 3.11929 6 4.5 6H7V4.5C7 3.11929 8.11929 2 9.5 2H14.5ZM12 10.5C11.7239 10.5 11.5 10.7239 11.5 11V13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H11.5V16C11.5 16.2761 11.7239 16.5 12 16.5C12.2761 16.5 12.5 16.2761 12.5 16V14H14.5C14.7761 14 15 13.7761 15 13.5C15 13.2239 14.7761 13 14.5 13H12.5V11C12.5 10.7239 12.2761 10.5 12 10.5ZM9.5 3C8.67157 3 8 3.67157 8 4.5V6H16V4.5C16 3.67157 15.3284 3 14.5 3H9.5Z",fill:"currentColor"})),x=H;0&&(module.exports={IconIcon});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconIcon/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconIcon: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M14.5 2C15.8807 2 17 3.11929 17 4.5V6H19.5C20.8807 6 22 7.11929 22 8.5V18.5C22 19.8807 20.8807 21 19.5 21H4.5C3.11929 21 2 19.8807 2 18.5V8.5C2 7.11929 3.11929 6 4.5 6H7V4.5C7 3.11929 8.11929 2 9.5 2H14.5ZM12 10.5C11.7239 10.5 11.5 10.7239 11.5 11V13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H11.5V16C11.5 16.2761 11.7239 16.5 12 16.5C12.2761 16.5 12.5 16.2761 12.5 16V14H14.5C14.7761 14 15 13.7761 15 13.5C15 13.2239 14.7761 13 14.5 13H12.5V11C12.5 10.7239 12.2761 10.5 12 10.5ZM9.5 3C8.67157 3 8 3.67157 8 4.5V6H16V4.5C16 3.67157 15.3284 3 14.5 3H9.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconIcon;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,cAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAsCC,GAE/C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,8jBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconIcon_exports","__export","IconIcon","IconIcon_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconIcon","props","React","CentralIconBase","IconIcon_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import n from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...t})=>C.createElement(p,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>n.createElement(e,{...r},n.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M14.5 2C15.8807 2 17 3.11929 17 4.5V6H19.5C20.8807 6 22 7.11929 22 8.5V18.5C22 19.8807 20.8807 21 19.5 21H4.5C3.11929 21 2 19.8807 2 18.5V8.5C2 7.11929 3.11929 6 4.5 6H7V4.5C7 3.11929 8.11929 2 9.5 2H14.5ZM12 10.5C11.7239 10.5 11.5 10.7239 11.5 11V13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H11.5V16C11.5 16.2761 11.7239 16.5 12 16.5C12.2761 16.5 12.5 16.2761 12.5 16V14H14.5C14.7761 14 15 13.7761 15 13.5C15 13.2239 14.7761 13 14.5 13H12.5V11C12.5 10.7239 12.2761 10.5 12 10.5ZM9.5 3C8.67157 3 8 3.67157 8 4.5V6H16V4.5C16 3.67157 15.3284 3 14.5 3H9.5Z",fill:"currentColor"})),B=a;export{a as IconIcon,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconIcon/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconIcon: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M14.5 2C15.8807 2 17 3.11929 17 4.5V6H19.5C20.8807 6 22 7.11929 22 8.5V18.5C22 19.8807 20.8807 21 19.5 21H4.5C3.11929 21 2 19.8807 2 18.5V8.5C2 7.11929 3.11929 6 4.5 6H7V4.5C7 3.11929 8.11929 2 9.5 2H14.5ZM12 10.5C11.7239 10.5 11.5 10.7239 11.5 11V13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H11.5V16C11.5 16.2761 11.7239 16.5 12 16.5C12.2761 16.5 12.5 16.2761 12.5 16V14H14.5C14.7761 14 15 13.7761 15 13.5C15 13.2239 14.7761 13 14.5 13H12.5V11C12.5 10.7239 12.2761 10.5 12 10.5ZM9.5 3C8.67157 3 8 3.67157 8 4.5V6H16V4.5C16 3.67157 15.3284 3 14.5 3H9.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconIcon;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAsCC,GAE/CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,8jBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconIcon","props","React","CentralIconBase","IconIcon_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -14210,6 +14210,20 @@
|
|
|
14210
14210
|
"packageName": "round-filled-radius-2-stroke-1",
|
|
14211
14211
|
"componentName": "IconIceHockey"
|
|
14212
14212
|
},
|
|
14213
|
+
{
|
|
14214
|
+
"category": "Health & Medical",
|
|
14215
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.5 2C15.8807 2 17 3.11929 17 4.5V6H19.5C20.8807 6 22 7.11929 22 8.5V18.5C22 19.8807 20.8807 21 19.5 21H4.5C3.11929 21 2 19.8807 2 18.5V8.5C2 7.11929 3.11929 6 4.5 6H7V4.5C7 3.11929 8.11929 2 9.5 2H14.5ZM12 10.5C11.7239 10.5 11.5 10.7239 11.5 11V13H9.5C9.22386 13 9 13.2239 9 13.5C9 13.7761 9.22386 14 9.5 14H11.5V16C11.5 16.2761 11.7239 16.5 12 16.5C12.2761 16.5 12.5 16.2761 12.5 16V14H14.5C14.7761 14 15 13.7761 15 13.5C15 13.2239 14.7761 13 14.5 13H12.5V11C12.5 10.7239 12.2761 10.5 12 10.5ZM9.5 3C8.67157 3 8 3.67157 8 4.5V6H16V4.5C16 3.67157 15.3284 3 14.5 3H9.5Z\" fill=\"currentColor\"/>",
|
|
14216
|
+
"iconName": "icon",
|
|
14217
|
+
"variant": {
|
|
14218
|
+
"join": "round",
|
|
14219
|
+
"filled": "on",
|
|
14220
|
+
"radius": "2",
|
|
14221
|
+
"stroke": "1"
|
|
14222
|
+
},
|
|
14223
|
+
"createdAt": "2026-05-26T15:02:39.249787+00:00",
|
|
14224
|
+
"packageName": "round-filled-radius-2-stroke-1",
|
|
14225
|
+
"componentName": "IconIcon"
|
|
14226
|
+
},
|
|
14213
14227
|
{
|
|
14214
14228
|
"category": "Social Media & Brands",
|
|
14215
14229
|
"svg": "<path d=\"M12 2V22L8 20V4L12 2Z\" fill=\"currentColor\"/><path opacity=\"0.35\" d=\"M16 4V20L12 22V2L16 4Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-filled-radius-2-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.248",
|
|
4
4
|
"style": "round-filled-radius-2-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-2-stroke-1/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 2016,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 88,
|
|
@@ -970,8 +970,9 @@
|
|
|
970
970
|
]
|
|
971
971
|
},
|
|
972
972
|
"Health & Medical": {
|
|
973
|
-
"count":
|
|
973
|
+
"count": 10,
|
|
974
974
|
"icons": [
|
|
975
|
+
"IconIcon",
|
|
975
976
|
"IconInjection",
|
|
976
977
|
"IconMask1",
|
|
977
978
|
"IconMedicalCross",
|
|
@@ -3236,6 +3237,7 @@
|
|
|
3236
3237
|
"IconHumanMashine": "human-mashine, high-five, ai, hands",
|
|
3237
3238
|
"IconIcebowl": "icebowl, cooling, vibe",
|
|
3238
3239
|
"IconIceHockey": "ice-hockey",
|
|
3240
|
+
"IconIcon": "icon",
|
|
3239
3241
|
"IconIconists": "iconists",
|
|
3240
3242
|
"IconIllustration": "illustration, painting, art",
|
|
3241
3243
|
"IconImac": "imac, computer",
|
package/index.d.ts
CHANGED
|
@@ -1013,6 +1013,7 @@ export { IconHourglass2, default as IconHourglass2Default, } from "./IconHourgla
|
|
|
1013
1013
|
export { IconHumanMashine, default as IconHumanMashineDefault, } from "./IconHumanMashine";
|
|
1014
1014
|
export { IconIceHockey, default as IconIceHockeyDefault, } from "./IconIceHockey";
|
|
1015
1015
|
export { IconIcebowl, default as IconIcebowlDefault } from "./IconIcebowl";
|
|
1016
|
+
export { IconIcon, default as IconIconDefault } from "./IconIcon";
|
|
1016
1017
|
export { IconIconists, default as IconIconistsDefault } from "./IconIconists";
|
|
1017
1018
|
export { IconIllustration, default as IconIllustrationDefault, } from "./IconIllustration";
|
|
1018
1019
|
export { IconImac, default as IconImacDefault } from "./IconImac";
|