@central-icons-react-native/round-filled-radius-2-stroke-1 1.1.235 → 1.1.236
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/IconKey3/index.d.ts +4 -0
- package/IconKey3/index.js +2 -0
- package/IconKey3/index.js.map +1 -0
- package/IconKey3/index.mjs +2 -0
- package/IconKey3/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 u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of I(r))!v.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(p=B(r,t))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(d(o)):{},l(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>l(n({},"__esModule",{value:!0}),o);var y={};x(y,{IconKey3:()=>i,default:()=>g});module.exports=P(y);var C=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...e})=>m.default.createElement(s.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"),i=o=>C.default.createElement(c,{...o},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M16.4999 2C19.5374 2.00005 21.9999 4.46246 21.9999 7.5C21.9999 10.5375 19.5374 13 16.4999 13C15.2234 13 14.0494 12.5637 13.1161 11.834L8.91593 15.9229L10.0683 17.0752C10.922 17.9293 10.9221 19.3138 10.0683 20.168C9.21407 21.0222 7.82875 21.0221 6.97452 20.168L5.78116 18.9746L3.84855 20.8584C3.6507 21.0509 3.3341 21.0464 3.14151 20.8486C2.94904 20.6508 2.95349 20.3342 3.15128 20.1416L12.3857 11.1494C11.5237 10.1784 10.9999 8.90052 10.9999 7.5C10.9999 4.46243 13.4623 2 16.4999 2ZM16.4999 3C14.0146 3 11.9999 5.01472 11.9999 7.5C11.9999 9.98528 14.0146 12 16.4999 12C18.9852 12 20.9999 9.98525 20.9999 7.5C20.9999 5.01475 18.9852 3.00005 16.4999 3Z",fill:"currentColor"})),g=i;0&&(module.exports={IconKey3});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconKey3/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 IconKey3: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M16.4999 2C19.5374 2.00005 21.9999 4.46246 21.9999 7.5C21.9999 10.5375 19.5374 13 16.4999 13C15.2234 13 14.0494 12.5637 13.1161 11.834L8.91593 15.9229L10.0683 17.0752C10.922 17.9293 10.9221 19.3138 10.0683 20.168C9.21407 21.0222 7.82875 21.0221 6.97452 20.168L5.78116 18.9746L3.84855 20.8584C3.6507 21.0509 3.3341 21.0464 3.14151 20.8486C2.94904 20.6508 2.95349 20.3342 3.15128 20.1416L12.3857 11.1494C11.5237 10.1784 10.9999 8.90052 10.9999 7.5C10.9999 4.46243 13.4623 2 16.4999 2ZM16.4999 3C14.0146 3 11.9999 5.01472 11.9999 7.5C11.9999 9.98528 14.0146 12 16.4999 12C18.9852 12 20.9999 9.98525 20.9999 7.5C20.9999 5.01475 18.9852 3.00005 16.4999 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconKey3;\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,6oBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconKey3_exports","__export","IconKey3","IconKey3_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconKey3","props","React","CentralIconBase","IconKey3_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...n})=>C.createElement(p,{...n,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=>t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M16.4999 2C19.5374 2.00005 21.9999 4.46246 21.9999 7.5C21.9999 10.5375 19.5374 13 16.4999 13C15.2234 13 14.0494 12.5637 13.1161 11.834L8.91593 15.9229L10.0683 17.0752C10.922 17.9293 10.9221 19.3138 10.0683 20.168C9.21407 21.0222 7.82875 21.0221 6.97452 20.168L5.78116 18.9746L3.84855 20.8584C3.6507 21.0509 3.3341 21.0464 3.14151 20.8486C2.94904 20.6508 2.95349 20.3342 3.15128 20.1416L12.3857 11.1494C11.5237 10.1784 10.9999 8.90052 10.9999 7.5C10.9999 4.46243 13.4623 2 16.4999 2ZM16.4999 3C14.0146 3 11.9999 5.01472 11.9999 7.5C11.9999 9.98528 14.0146 12 16.4999 12C18.9852 12 20.9999 9.98525 20.9999 7.5C20.9999 5.01475 18.9852 3.00005 16.4999 3Z",fill:"currentColor"})),v=a;export{a as IconKey3,v as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconKey3/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 IconKey3: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M16.4999 2C19.5374 2.00005 21.9999 4.46246 21.9999 7.5C21.9999 10.5375 19.5374 13 16.4999 13C15.2234 13 14.0494 12.5637 13.1161 11.834L8.91593 15.9229L10.0683 17.0752C10.922 17.9293 10.9221 19.3138 10.0683 20.168C9.21407 21.0222 7.82875 21.0221 6.97452 20.168L5.78116 18.9746L3.84855 20.8584C3.6507 21.0509 3.3341 21.0464 3.14151 20.8486C2.94904 20.6508 2.95349 20.3342 3.15128 20.1416L12.3857 11.1494C11.5237 10.1784 10.9999 8.90052 10.9999 7.5C10.9999 4.46243 13.4623 2 16.4999 2ZM16.4999 3C14.0146 3 11.9999 5.01472 11.9999 7.5C11.9999 9.98528 14.0146 12 16.4999 12C18.9852 12 20.9999 9.98525 20.9999 7.5C20.9999 5.01475 18.9852 3.00005 16.4999 3Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconKey3;\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,6oBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconKey3","props","React","CentralIconBase","IconKey3_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -14756,6 +14756,20 @@
|
|
|
14756
14756
|
"packageName": "round-filled-radius-2-stroke-1",
|
|
14757
14757
|
"componentName": "IconKey2"
|
|
14758
14758
|
},
|
|
14759
|
+
{
|
|
14760
|
+
"category": "Security",
|
|
14761
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.4999 2C19.5374 2.00005 21.9999 4.46246 21.9999 7.5C21.9999 10.5375 19.5374 13 16.4999 13C15.2234 13 14.0494 12.5637 13.1161 11.834L8.91593 15.9229L10.0683 17.0752C10.922 17.9293 10.9221 19.3138 10.0683 20.168C9.21407 21.0222 7.82875 21.0221 6.97452 20.168L5.78116 18.9746L3.84855 20.8584C3.6507 21.0509 3.3341 21.0464 3.14151 20.8486C2.94904 20.6508 2.95349 20.3342 3.15128 20.1416L12.3857 11.1494C11.5237 10.1784 10.9999 8.90052 10.9999 7.5C10.9999 4.46243 13.4623 2 16.4999 2ZM16.4999 3C14.0146 3 11.9999 5.01472 11.9999 7.5C11.9999 9.98528 14.0146 12 16.4999 12C18.9852 12 20.9999 9.98525 20.9999 7.5C20.9999 5.01475 18.9852 3.00005 16.4999 3Z\" fill=\"currentColor\"/>",
|
|
14762
|
+
"iconName": "key-3, password",
|
|
14763
|
+
"variant": {
|
|
14764
|
+
"join": "round",
|
|
14765
|
+
"filled": "on",
|
|
14766
|
+
"radius": "2",
|
|
14767
|
+
"stroke": "1"
|
|
14768
|
+
},
|
|
14769
|
+
"createdAt": "2026-05-15T16:01:55.845176+00:00",
|
|
14770
|
+
"packageName": "round-filled-radius-2-stroke-1",
|
|
14771
|
+
"componentName": "IconKey3"
|
|
14772
|
+
},
|
|
14759
14773
|
{
|
|
14760
14774
|
"category": "Sound & Music",
|
|
14761
14775
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 5.5C3 4.11929 4.11929 3 5.5 3H18.5C19.8807 3 21 4.11929 21 5.5V19.5C21 20.8807 19.8807 22 18.5 22H5.5C4.11929 22 3 20.8807 3 19.5V5.5ZM11 4H13V12.5C13 12.7761 13.2239 13 13.5 13H15V21H9V13H10.5C10.7761 13 11 12.7761 11 12.5V4ZM16 21H18.5C19.3284 21 20 20.3284 20 19.5V5.5C20 4.67157 19.3284 4 18.5 4H18V12.5C18 12.7761 17.7761 13 17.5 13H16V21ZM6 4V12.5C6 12.7761 6.22386 13 6.5 13H8V21H5.5C4.67157 21 4 20.3284 4 19.5V5.5C4 4.67157 4.67157 4 5.5 4H6Z\" 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.236",
|
|
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": 1995,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 88,
|
|
@@ -1446,7 +1446,7 @@
|
|
|
1446
1446
|
]
|
|
1447
1447
|
},
|
|
1448
1448
|
"Security": {
|
|
1449
|
-
"count":
|
|
1449
|
+
"count": 34,
|
|
1450
1450
|
"icons": [
|
|
1451
1451
|
"IconAnonymous",
|
|
1452
1452
|
"IconAsterisk",
|
|
@@ -1458,6 +1458,7 @@
|
|
|
1458
1458
|
"IconGhost2",
|
|
1459
1459
|
"IconKey1",
|
|
1460
1460
|
"IconKey2",
|
|
1461
|
+
"IconKey3",
|
|
1461
1462
|
"IconKeyhole",
|
|
1462
1463
|
"IconLaw",
|
|
1463
1464
|
"IconLock",
|
|
@@ -3249,6 +3250,7 @@
|
|
|
3249
3250
|
"IconKanbanView": "kanban-view, columns",
|
|
3250
3251
|
"IconKey1": "key-1, password",
|
|
3251
3252
|
"IconKey2": "key-2, password",
|
|
3253
|
+
"IconKey3": "key-3, password",
|
|
3252
3254
|
"IconKeyboard": "keyboard, midi, keys, piano",
|
|
3253
3255
|
"IconKeyboardCable": "keyboard-cable",
|
|
3254
3256
|
"IconKeyboardDown": "keyboard-down",
|
package/index.d.ts
CHANGED
|
@@ -1052,6 +1052,7 @@ export { IconJump, default as IconJumpDefault } from "./IconJump";
|
|
|
1052
1052
|
export { IconKanbanView, default as IconKanbanViewDefault, } from "./IconKanbanView";
|
|
1053
1053
|
export { IconKey1, default as IconKey1Default } from "./IconKey1";
|
|
1054
1054
|
export { IconKey2, default as IconKey2Default } from "./IconKey2";
|
|
1055
|
+
export { IconKey3, default as IconKey3Default } from "./IconKey3";
|
|
1055
1056
|
export { IconKeyboard, default as IconKeyboardDefault } from "./IconKeyboard";
|
|
1056
1057
|
export { IconKeyboardCable, default as IconKeyboardCableDefault, } from "./IconKeyboardCable";
|
|
1057
1058
|
export { IconKeyboardDown, default as IconKeyboardDownDefault, } from "./IconKeyboardDown";
|