@central-icons-react-native/round-filled-radius-0-stroke-2 1.1.237 → 1.1.238
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/IconPeopleIdCard2/index.d.ts +4 -0
- package/IconPeopleIdCard2/index.js +2 -0
- package/IconPeopleIdCard2/index.js.map +1 -0
- package/IconPeopleIdCard2/index.mjs +2 -0
- package/IconPeopleIdCard2/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 i=Object.create;var t=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!P.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(l=u(o,n))||l.enumerable});return r};var m=(r,o,e)=>(e=r!=null?i(B(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>a(t({},"__esModule",{value:!0}),r);var g={};v(g,{IconPeopleIdCard2:()=>d,default:()=>H});module.exports=x(g);var C=m(require("react"));var f=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...e})=>f.default.createElement(s.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 p=require("react-native-svg"),d=r=>C.default.createElement(c,{...r},C.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M8 7C8 7.55228 8.44772 8 9 8H15C15.5523 8 16 7.55228 16 7V4H19C19.5523 4 20 4.44772 20 5V21C20 21.5523 19.5523 22 19 22H5C4.44772 22 4 21.5523 4 21V5C4 4.44772 4.44772 4 5 4H8V7ZM12 16.5C10.0779 16.5 8.43685 17.7055 7.79199 19.4014C7.67846 19.701 7.91685 19.9998 8.2373 20H15.7627C16.0831 19.9997 16.3215 19.7009 16.208 19.4014C15.5632 17.7055 13.9221 16.5 12 16.5ZM12 9.75C10.6193 9.75 9.5 10.8693 9.5 12.25C9.5 13.6307 10.6193 14.75 12 14.75C13.3807 14.75 14.5 13.6307 14.5 12.25C14.5 10.8693 13.3807 9.75 12 9.75Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M14 6H10V2H14V6Z",fill:"currentColor"})),H=d;0&&(module.exports={IconPeopleIdCard2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPeopleIdCard2/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 IconPeopleIdCard2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M8 7C8 7.55228 8.44772 8 9 8H15C15.5523 8 16 7.55228 16 7V4H19C19.5523 4 20 4.44772 20 5V21C20 21.5523 19.5523 22 19 22H5C4.44772 22 4 21.5523 4 21V5C4 4.44772 4.44772 4 5 4H8V7ZM12 16.5C10.0779 16.5 8.43685 17.7055 7.79199 19.4014C7.67846 19.701 7.91685 19.9998 8.2373 20H15.7627C16.0831 19.9997 16.3215 19.7009 16.208 19.4014C15.5632 17.7055 13.9221 16.5 12 16.5ZM12 9.75C10.6193 9.75 9.5 10.8693 9.5 12.25C9.5 13.6307 10.6193 14.75 12 14.75C13.3807 14.75 14.5 13.6307 14.5 12.25C14.5 10.8693 13.3807 9.75 12 9.75Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M14 6H10V2H14V6Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleIdCard2;\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,uBAAAE,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,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ugBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,mBAAmB,KAAK,eAAe,CACjD,EAIGE,EAAQJ","names":["IconPeopleIdCard2_exports","__export","IconPeopleIdCard2","IconPeopleIdCard2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPeopleIdCard2","props","React","CentralIconBase","IconPeopleIdCard2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as l}from"react-native-svg";var n=({children:o,size:r=24,...C})=>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{Path as t}from"react-native-svg";var a=o=>e.createElement(n,{...o},e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M8 7C8 7.55228 8.44772 8 9 8H15C15.5523 8 16 7.55228 16 7V4H19C19.5523 4 20 4.44772 20 5V21C20 21.5523 19.5523 22 19 22H5C4.44772 22 4 21.5523 4 21V5C4 4.44772 4.44772 4 5 4H8V7ZM12 16.5C10.0779 16.5 8.43685 17.7055 7.79199 19.4014C7.67846 19.701 7.91685 19.9998 8.2373 20H15.7627C16.0831 19.9997 16.3215 19.7009 16.208 19.4014C15.5632 17.7055 13.9221 16.5 12 16.5ZM12 9.75C10.6193 9.75 9.5 10.8693 9.5 12.25C9.5 13.6307 10.6193 14.75 12 14.75C13.3807 14.75 14.5 13.6307 14.5 12.25C14.5 10.8693 13.3807 9.75 12 9.75Z",fill:"currentColor"}),e.createElement(t,{d:"M14 6H10V2H14V6Z",fill:"currentColor"})),P=a;export{a as IconPeopleIdCard2,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPeopleIdCard2/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 IconPeopleIdCard2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M8 7C8 7.55228 8.44772 8 9 8H15C15.5523 8 16 7.55228 16 7V4H19C19.5523 4 20 4.44772 20 5V21C20 21.5523 19.5523 22 19 22H5C4.44772 22 4 21.5523 4 21V5C4 4.44772 4.44772 4 5 4H8V7ZM12 16.5C10.0779 16.5 8.43685 17.7055 7.79199 19.4014C7.67846 19.701 7.91685 19.9998 8.2373 20H15.7627C16.0831 19.9997 16.3215 19.7009 16.208 19.4014C15.5632 17.7055 13.9221 16.5 12 16.5ZM12 9.75C10.6193 9.75 9.5 10.8693 9.5 12.25C9.5 13.6307 10.6193 14.75 12 14.75C13.3807 14.75 14.5 13.6307 14.5 12.25C14.5 10.8693 13.3807 9.75 12 9.75Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M14 6H10V2H14V6Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleIdCard2;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,ugBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,mBAAmB,KAAK,eAAe,CACjD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPeopleIdCard2","props","React","CentralIconBase","IconPeopleIdCard2_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -19012,6 +19012,20 @@
|
|
|
19012
19012
|
"packageName": "round-filled-radius-0-stroke-2",
|
|
19013
19013
|
"componentName": "IconPeopleIdCard"
|
|
19014
19014
|
},
|
|
19015
|
+
{
|
|
19016
|
+
"category": "People",
|
|
19017
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 7C8 7.55228 8.44772 8 9 8H15C15.5523 8 16 7.55228 16 7V4H19C19.5523 4 20 4.44772 20 5V21C20 21.5523 19.5523 22 19 22H5C4.44772 22 4 21.5523 4 21V5C4 4.44772 4.44772 4 5 4H8V7ZM12 16.5C10.0779 16.5 8.43685 17.7055 7.79199 19.4014C7.67846 19.701 7.91685 19.9998 8.2373 20H15.7627C16.0831 19.9997 16.3215 19.7009 16.208 19.4014C15.5632 17.7055 13.9221 16.5 12 16.5ZM12 9.75C10.6193 9.75 9.5 10.8693 9.5 12.25C9.5 13.6307 10.6193 14.75 12 14.75C13.3807 14.75 14.5 13.6307 14.5 12.25C14.5 10.8693 13.3807 9.75 12 9.75Z\" fill=\"currentColor\"/><path d=\"M14 6H10V2H14V6Z\" fill=\"currentColor\"/>",
|
|
19018
|
+
"iconName": "people-id-card-2, profile, user-account, badge, person",
|
|
19019
|
+
"variant": {
|
|
19020
|
+
"join": "round",
|
|
19021
|
+
"filled": "on",
|
|
19022
|
+
"radius": "0",
|
|
19023
|
+
"stroke": "2"
|
|
19024
|
+
},
|
|
19025
|
+
"createdAt": "2026-05-18T16:02:12.946309+00:00",
|
|
19026
|
+
"packageName": "round-filled-radius-0-stroke-2",
|
|
19027
|
+
"componentName": "IconPeopleIdCard2"
|
|
19028
|
+
},
|
|
19015
19029
|
{
|
|
19016
19030
|
"category": "People",
|
|
19017
19031
|
"svg": "<path d=\"M12 2C9.51472 2 7.5 4.01472 7.5 6.5C7.5 8.98528 9.51472 11 12 11C14.4853 11 16.5 8.98528 16.5 6.5C16.5 4.01472 14.4853 2 12 2Z\" fill=\"currentColor\"/><path d=\"M3.50439 19.9064C3.91665 15.5211 7.24222 12 12 12C13.3885 12 14.655 12.2999 15.7628 12.8336C13.2783 13.3088 12 15.7191 12 17.75C12 18.9916 12.4715 20.1032 13.0986 21H4.5C4.21851 21 3.95005 20.8814 3.76055 20.6732C3.57104 20.465 3.47805 20.1867 3.50439 19.9064Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.6667 14.75C15.9817 14.75 15.2983 15.0252 14.7913 15.5661C14.2795 16.112 14 16.8693 14 17.75C14 19.1781 14.9978 20.269 15.7694 20.9064C16.1821 21.2473 16.6013 21.5179 16.9401 21.7062C17.1094 21.8002 17.2683 21.8791 17.4054 21.9379C17.4729 21.9668 17.5465 21.9957 17.6202 22.0193L17.6232 22.0203C17.6676 22.0345 17.8196 22.0833 18 22.0833C18.1804 22.0833 18.3324 22.0345 18.3768 22.0203L18.3798 22.0193C18.4535 21.9957 18.5271 21.9668 18.5946 21.9379C18.7317 21.8791 18.8906 21.8002 19.0599 21.7062C19.3988 21.5179 19.8179 21.2473 20.2306 20.9064C21.0022 20.269 22 19.1781 22 17.75C22 16.8693 21.7205 16.112 21.2087 15.5661C20.7017 15.0252 20.0183 14.75 19.3333 14.75C18.7843 14.75 18.3321 14.896 18 15.0578C17.6679 14.896 17.2157 14.75 16.6667 14.75Z\" 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-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.238",
|
|
4
4
|
"style": "round-filled-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-0-stroke-2/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": 1998,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 88,
|
|
@@ -1294,7 +1294,7 @@
|
|
|
1294
1294
|
]
|
|
1295
1295
|
},
|
|
1296
1296
|
"People": {
|
|
1297
|
-
"count":
|
|
1297
|
+
"count": 56,
|
|
1298
1298
|
"icons": [
|
|
1299
1299
|
"IconAura",
|
|
1300
1300
|
"IconBathMan1",
|
|
@@ -1321,6 +1321,7 @@
|
|
|
1321
1321
|
"IconPeopleGear",
|
|
1322
1322
|
"IconPeopleGroup2",
|
|
1323
1323
|
"IconPeopleIdCard",
|
|
1324
|
+
"IconPeopleIdCard2",
|
|
1324
1325
|
"IconPeopleLike",
|
|
1325
1326
|
"IconPeopleNoise",
|
|
1326
1327
|
"IconPeopleRemove",
|
|
@@ -3556,6 +3557,7 @@
|
|
|
3556
3557
|
"IconPeopleGear": "people-gear, user-settings, preferences, person",
|
|
3557
3558
|
"IconPeopleGroup2": "people-group-2, user, friend",
|
|
3558
3559
|
"IconPeopleIdCard": "people-id-card, profile, user-account, badge, person",
|
|
3560
|
+
"IconPeopleIdCard2": "people-id-card-2, profile, user-account, badge, person",
|
|
3559
3561
|
"IconPeopleLike": "people-like, inner circle",
|
|
3560
3562
|
"IconPeopleNoise": "people-noise, audio-quality, user-noise",
|
|
3561
3563
|
"IconPeopleRemove": "people-remove, user-remove",
|
package/index.d.ts
CHANGED
|
@@ -1356,6 +1356,7 @@ export { IconPeopleEdit, default as IconPeopleEditDefault, } from "./IconPeopleE
|
|
|
1356
1356
|
export { IconPeopleGear, default as IconPeopleGearDefault, } from "./IconPeopleGear";
|
|
1357
1357
|
export { IconPeopleGroup2, default as IconPeopleGroup2Default, } from "./IconPeopleGroup2";
|
|
1358
1358
|
export { IconPeopleIdCard, default as IconPeopleIdCardDefault, } from "./IconPeopleIdCard";
|
|
1359
|
+
export { IconPeopleIdCard2, default as IconPeopleIdCard2Default, } from "./IconPeopleIdCard2";
|
|
1359
1360
|
export { IconPeopleLike, default as IconPeopleLikeDefault, } from "./IconPeopleLike";
|
|
1360
1361
|
export { IconPeopleNoise, default as IconPeopleNoiseDefault, } from "./IconPeopleNoise";
|
|
1361
1362
|
export { IconPeopleRemove, default as IconPeopleRemoveDefault, } from "./IconPeopleRemove";
|