@central-icons-react-native/round-filled-radius-1-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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPeopleIdCard2: FC<CentralIconBaseProps>;
4
+ export default IconPeopleIdCard2;
@@ -0,0 +1,2 @@
1
+ "use strict";var i=Object.create;var n=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)n(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of I(o))!P.call(r,C)&&C!==e&&n(r,C,{get:()=>o[C],enumerable:!(l=u(o,C))||l.enumerable});return r};var m=(r,o,e)=>(e=r!=null?i(B(r)):{},a(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>a(n({},"__esModule",{value:!0}),r);var g={};v(g,{IconPeopleIdCard2:()=>d,default:()=>H});module.exports=x(g);var t=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=>t.default.createElement(c,{...r},t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M8 6C8 7.10457 8.89543 8 10 8H14C15.1046 8 16 7.10457 16 6V4H18C19.1046 4 20 4.89543 20 6V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V6C4 4.89543 4.89543 4 6 4H8V6ZM12 16.5C10.1889 16.5 8.62779 17.57 7.91406 19.1123C7.712 19.549 8.0696 20 8.55078 20H15.4492C15.9304 20 16.288 19.549 16.0859 19.1123C15.3722 17.57 13.8111 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"}),t.default.createElement(p.Path,{d:"M13.75 2C13.8881 2 14 2.11193 14 2.25V5.75C14 5.88807 13.8881 6 13.75 6H10.25C10.1119 6 10 5.88807 10 5.75V2.25C10 2.11193 10.1119 2 10.25 2H13.75Z",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 6C8 7.10457 8.89543 8 10 8H14C15.1046 8 16 7.10457 16 6V4H18C19.1046 4 20 4.89543 20 6V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V6C4 4.89543 4.89543 4 6 4H8V6ZM12 16.5C10.1889 16.5 8.62779 17.57 7.91406 19.1123C7.712 19.549 8.0696 20 8.55078 20H15.4492C15.9304 20 16.288 19.549 16.0859 19.1123C15.3722 17.57 13.8111 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\n d=\"M13.75 2C13.8881 2 14 2.11193 14 2.25V5.75C14 5.88807 13.8881 6 13.75 6H10.25C10.1119 6 10 5.88807 10 5.75V2.25C10 2.11193 10.1119 2 10.25 2H13.75Z\"\n fill=\"currentColor\"\n />\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,ufACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sJACF,KAAK,eACP,CACF,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 C=({children:o,size:r=24,...t})=>p.createElement(l,{...t,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 n}from"react-native-svg";var a=o=>e.createElement(C,{...o},e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M8 6C8 7.10457 8.89543 8 10 8H14C15.1046 8 16 7.10457 16 6V4H18C19.1046 4 20 4.89543 20 6V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V6C4 4.89543 4.89543 4 6 4H8V6ZM12 16.5C10.1889 16.5 8.62779 17.57 7.91406 19.1123C7.712 19.549 8.0696 20 8.55078 20H15.4492C15.9304 20 16.288 19.549 16.0859 19.1123C15.3722 17.57 13.8111 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(n,{d:"M13.75 2C13.8881 2 14 2.11193 14 2.25V5.75C14 5.88807 13.8881 6 13.75 6H10.25C10.1119 6 10 5.88807 10 5.75V2.25C10 2.11193 10.1119 2 10.25 2H13.75Z",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 6C8 7.10457 8.89543 8 10 8H14C15.1046 8 16 7.10457 16 6V4H18C19.1046 4 20 4.89543 20 6V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V6C4 4.89543 4.89543 4 6 4H8V6ZM12 16.5C10.1889 16.5 8.62779 17.57 7.91406 19.1123C7.712 19.549 8.0696 20 8.55078 20H15.4492C15.9304 20 16.288 19.549 16.0859 19.1123C15.3722 17.57 13.8111 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\n d=\"M13.75 2C13.8881 2 14 2.11193 14 2.25V5.75C14 5.88807 13.8881 6 13.75 6H10.25C10.1119 6 10 5.88807 10 5.75V2.25C10 2.11193 10.1119 2 10.25 2H13.75Z\"\n fill=\"currentColor\"\n />\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,ufACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sJACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPeopleIdCard2","props","React","CentralIconBase","IconPeopleIdCard2_default"]}
package/README.md CHANGED
@@ -1404,6 +1404,7 @@ Below is a complete list of available icons:
1404
1404
  - IconPeopleGear
1405
1405
  - IconPeopleGroup2
1406
1406
  - IconPeopleIdCard
1407
+ - IconPeopleIdCard2
1407
1408
  - IconPeopleLike
1408
1409
  - IconPeopleNoise
1409
1410
  - IconPeopleRemove
@@ -19012,6 +19012,20 @@
19012
19012
  "packageName": "round-filled-radius-1-stroke-2",
19013
19013
  "componentName": "IconPeopleIdCard"
19014
19014
  },
19015
+ {
19016
+ "category": "People",
19017
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 6C8 7.10457 8.89543 8 10 8H14C15.1046 8 16 7.10457 16 6V4H18C19.1046 4 20 4.89543 20 6V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V6C4 4.89543 4.89543 4 6 4H8V6ZM12 16.5C10.1889 16.5 8.62779 17.57 7.91406 19.1123C7.712 19.549 8.0696 20 8.55078 20H15.4492C15.9304 20 16.288 19.549 16.0859 19.1123C15.3722 17.57 13.8111 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=\"M13.75 2C13.8881 2 14 2.11193 14 2.25V5.75C14 5.88807 13.8881 6 13.75 6H10.25C10.1119 6 10 5.88807 10 5.75V2.25C10 2.11193 10.1119 2 10.25 2H13.75Z\" fill=\"currentColor\"/>",
19018
+ "iconName": "people-id-card-2, profile, user-account, badge, person",
19019
+ "variant": {
19020
+ "join": "round",
19021
+ "filled": "on",
19022
+ "radius": "1",
19023
+ "stroke": "2"
19024
+ },
19025
+ "createdAt": "2026-05-18T16:02:12.946309+00:00",
19026
+ "packageName": "round-filled-radius-1-stroke-2",
19027
+ "componentName": "IconPeopleIdCard2"
19028
+ },
19015
19029
  {
19016
19030
  "category": "People",
19017
19031
  "svg": "<path d=\"M12.001 2C9.5157 2 7.50098 4.01472 7.50098 6.5C7.50098 8.98528 9.5157 11 12.001 11C14.4863 11 16.501 8.98528 16.501 6.5C16.501 4.01472 14.4863 2 12.001 2Z\" fill=\"currentColor\"/><path d=\"M3.69691 18.6964C4.55378 14.8837 7.70183 12 12.001 12C13.3872 12 14.6538 12.2998 15.7624 12.8339C13.2789 13.3096 12.001 15.7194 12.001 17.75C12.001 18.9916 12.4724 20.1032 13.0996 21H5.59944C4.46429 21 3.40713 19.9858 3.69691 18.6964Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.6676 14.75C15.9827 14.75 15.2993 15.0252 14.7923 15.5661C14.2805 16.112 14.001 16.8693 14.001 17.75C14.001 19.1781 14.9987 20.269 15.7703 20.9064C16.1831 21.2473 16.6022 21.5179 16.9411 21.7062C17.1104 21.8002 17.2693 21.8791 17.4064 21.9379C17.4739 21.9668 17.5474 21.9957 17.6212 22.0193L17.6242 22.0203C17.6685 22.0345 17.8206 22.0833 18.001 22.0833C18.1814 22.0833 18.3334 22.0345 18.3778 22.0203L18.3807 22.0193C18.4545 21.9957 18.528 21.9668 18.5956 21.9379C18.7326 21.8791 18.8916 21.8002 19.0608 21.7062C19.3997 21.5179 19.8189 21.2473 20.2316 20.9064C21.0032 20.269 22.001 19.1781 22.001 17.75C22.001 16.8693 21.7215 16.112 21.2097 15.5661C20.7027 15.0252 20.0193 14.75 19.3343 14.75C18.7853 14.75 18.3331 14.896 18.001 15.0578C17.6689 14.896 17.2166 14.75 16.6676 14.75Z\" fill=\"currentColor\"/>",
package/icons/index.d.ts CHANGED
@@ -1357,6 +1357,7 @@ export type CentralIconName =
1357
1357
  | "IconPeopleGear"
1358
1358
  | "IconPeopleGroup2"
1359
1359
  | "IconPeopleIdCard"
1360
+ | "IconPeopleIdCard2"
1360
1361
  | "IconPeopleLike"
1361
1362
  | "IconPeopleNoise"
1362
1363
  | "IconPeopleRemove"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-filled-radius-1-stroke-2",
3
- "version": "1.1.237",
3
+ "version": "1.1.238",
4
4
  "style": "round-filled-radius-1-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-1-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": 1997,
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": 55,
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";