@central-icons-react-native/round-filled-radius-3-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 V={};v(V,{IconPeopleIdCard2:()=>d,default:()=>g});module.exports=x(V);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:"M16 4C18.2091 4 20 5.79086 20 8V18C20 20.2091 18.2091 22 16 22H8C5.79086 22 4 20.2091 4 18V8C4 5.79086 5.79086 4 8 4V5.5C8 6.88071 9.11929 8 10.5 8H13.5C14.8807 8 16 6.88071 16 5.5V4ZM12 16.5C10.3003 16.5 8.82025 17.4423 8.05469 18.833C7.74541 19.395 8.22272 20 8.86426 20H15.1357C15.7773 20 16.2537 19.3951 15.9443 18.833C15.1787 17.4424 13.6996 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.25 2C13.6642 2 14 2.33579 14 2.75V5.25C14 5.66421 13.6642 6 13.25 6H10.75C10.3358 6 10 5.66421 10 5.25V2.75C10 2.33579 10.3358 2 10.75 2H13.25Z",fill:"currentColor"})),g=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=\"M16 4C18.2091 4 20 5.79086 20 8V18C20 20.2091 18.2091 22 16 22H8C5.79086 22 4 20.2091 4 18V8C4 5.79086 5.79086 4 8 4V5.5C8 6.88071 9.11929 8 10.5 8H13.5C14.8807 8 16 6.88071 16 5.5V4ZM12 16.5C10.3003 16.5 8.82025 17.4423 8.05469 18.833C7.74541 19.395 8.22272 20 8.86426 20H15.1357C15.7773 20 16.2537 19.3951 15.9443 18.833C15.1787 17.4424 13.6996 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.25 2C13.6642 2 14 2.33579 14 2.75V5.25C14 5.66421 13.6642 6 13.25 6H10.75C10.3358 6 10 5.66421 10 5.25V2.75C10 2.33579 10.3358 2 10.75 2H13.25Z\"\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,kgBACF,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:"M16 4C18.2091 4 20 5.79086 20 8V18C20 20.2091 18.2091 22 16 22H8C5.79086 22 4 20.2091 4 18V8C4 5.79086 5.79086 4 8 4V5.5C8 6.88071 9.11929 8 10.5 8H13.5C14.8807 8 16 6.88071 16 5.5V4ZM12 16.5C10.3003 16.5 8.82025 17.4423 8.05469 18.833C7.74541 19.395 8.22272 20 8.86426 20H15.1357C15.7773 20 16.2537 19.3951 15.9443 18.833C15.1787 17.4424 13.6996 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.25 2C13.6642 2 14 2.33579 14 2.75V5.25C14 5.66421 13.6642 6 13.25 6H10.75C10.3358 6 10 5.66421 10 5.25V2.75C10 2.33579 10.3358 2 10.75 2H13.25Z",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=\"M16 4C18.2091 4 20 5.79086 20 8V18C20 20.2091 18.2091 22 16 22H8C5.79086 22 4 20.2091 4 18V8C4 5.79086 5.79086 4 8 4V5.5C8 6.88071 9.11929 8 10.5 8H13.5C14.8807 8 16 6.88071 16 5.5V4ZM12 16.5C10.3003 16.5 8.82025 17.4423 8.05469 18.833C7.74541 19.395 8.22272 20 8.86426 20H15.1357C15.7773 20 16.2537 19.3951 15.9443 18.833C15.1787 17.4424 13.6996 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.25 2C13.6642 2 14 2.33579 14 2.75V5.25C14 5.66421 13.6642 6 13.25 6H10.75C10.3358 6 10 5.66421 10 5.25V2.75C10 2.33579 10.3358 2 10.75 2H13.25Z\"\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,kgBACF,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-3-stroke-2",
19013
19013
  "componentName": "IconPeopleIdCard"
19014
19014
  },
19015
+ {
19016
+ "category": "People",
19017
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16 4C18.2091 4 20 5.79086 20 8V18C20 20.2091 18.2091 22 16 22H8C5.79086 22 4 20.2091 4 18V8C4 5.79086 5.79086 4 8 4V5.5C8 6.88071 9.11929 8 10.5 8H13.5C14.8807 8 16 6.88071 16 5.5V4ZM12 16.5C10.3003 16.5 8.82025 17.4423 8.05469 18.833C7.74541 19.395 8.22272 20 8.86426 20H15.1357C15.7773 20 16.2537 19.3951 15.9443 18.833C15.1787 17.4424 13.6996 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.25 2C13.6642 2 14 2.33579 14 2.75V5.25C14 5.66421 13.6642 6 13.25 6H10.75C10.3358 6 10 5.66421 10 5.25V2.75C10 2.33579 10.3358 2 10.75 2H13.25Z\" fill=\"currentColor\"/>",
19018
+ "iconName": "people-id-card-2, profile, user-account, badge, person",
19019
+ "variant": {
19020
+ "join": "round",
19021
+ "filled": "on",
19022
+ "radius": "3",
19023
+ "stroke": "2"
19024
+ },
19025
+ "createdAt": "2026-05-18T16:02:12.946309+00:00",
19026
+ "packageName": "round-filled-radius-3-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=\"M4.55269 16.3886C5.96263 13.7661 8.64237 12 12.0001 12C13.3821 12 14.6493 12.2992 15.7603 12.8341C13.2775 13.3104 12 15.7197 12 17.75C12 18.9916 12.4715 20.1032 13.0986 21H7.79536C6.62375 21 5.53148 20.479 4.85818 19.6414C4.16063 18.7737 3.92347 17.5589 4.55269 16.3886Z\" 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
@@ -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-3-stroke-2",
3
- "version": "1.1.237",
3
+ "version": "1.1.238",
4
4
  "style": "round-filled-radius-3-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-3-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";