@central-icons-react-native/round-filled-radius-0-stroke-2 1.1.124 → 1.1.125

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 IconPeople21: FC<CentralIconBaseProps>;
4
+ export default IconPeople21;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var l=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var C in o)l(r,C,{get:o[C],enumerable:!0})},f=(r,o,C,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!x.call(r,n)&&n!==C&&l(r,n,{get:()=>o[n],enumerable:!(p=B(o,n))||p.enumerable});return r};var m=(r,o,C)=>(C=r!=null?u(P(r)):{},f(o||!r||!r.__esModule?l(C,"default",{value:r,enumerable:!0}):C,r)),g=r=>f(l({},"__esModule",{value:!0}),r);var h={};d(h,{IconPeople21:()=>i,default:()=>v});module.exports=g(h);var e=m(require("react"));var a=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...C})=>a.default.createElement(s.Svg,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),i=r=>e.default.createElement(c,{...r},e.default.createElement(t.Path,{d:"M12 13.75C14.2137 13.75 15.9998 15.5521 16 17.7646V19C16 19.5523 15.5523 20 15 20H3C2.44772 20 2 19.5523 2 19V17.7646C2.0002 15.5521 3.78628 13.75 6 13.75H12Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M18 13.75C20.2137 13.75 21.9998 15.5521 22 17.7646V18.9492C22 19.5015 21.5523 19.9492 21 19.9492H18V17.7646L17.9922 17.4561C17.9204 16.0371 17.3545 14.7454 16.4639 13.75H18Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M9 4C11.4853 4 13.5 6.01472 13.5 8.5C13.5 10.9853 11.4853 13 9 13C6.51472 13 4.5 10.9853 4.5 8.5C4.5 6.01472 6.51472 4 9 4Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M15 4C17.4853 4 19.5 6.01472 19.5 8.5C19.5 10.7809 17.8028 12.6634 15.6025 12.958C15.2117 12.6629 14.7855 12.4119 14.3281 12.2188C15.0651 11.1647 15.5 9.88373 15.5 8.5C15.5 6.82857 14.8686 5.30493 13.832 4.15332C14.2045 4.05348 14.596 4 15 4Z",fill:"currentColor"})),v=i;0&&(module.exports={IconPeople21});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPeople21/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 IconPeople21: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 13.75C14.2137 13.75 15.9998 15.5521 16 17.7646V19C16 19.5523 15.5523 20 15 20H3C2.44772 20 2 19.5523 2 19V17.7646C2.0002 15.5521 3.78628 13.75 6 13.75H12Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18 13.75C20.2137 13.75 21.9998 15.5521 22 17.7646V18.9492C22 19.5015 21.5523 19.9492 21 19.9492H18V17.7646L17.9922 17.4561C17.9204 16.0371 17.3545 14.7454 16.4639 13.75H18Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9 4C11.4853 4 13.5 6.01472 13.5 8.5C13.5 10.9853 11.4853 13 9 13C6.51472 13 4.5 10.9853 4.5 8.5C4.5 6.01472 6.51472 4 9 4Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15 4C17.4853 4 19.5 6.01472 19.5 8.5C19.5 10.7809 17.8028 12.6634 15.6025 12.958C15.2117 12.6629 14.7855 12.4119 14.3281 12.2188C15.0651 11.1647 15.5 9.88373 15.5 8.5C15.5 6.82857 14.8686 5.30493 13.832 4.15332C14.2045 4.05348 14.596 4 15 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeople21;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iKACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gLACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8HACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qPACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPeople21_exports","__export","IconPeople21","IconPeople21_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPeople21","props","React","CentralIconBase","IconPeople21_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:r=24,...t})=>l.createElement(p,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as C}from"react-native-svg";var f=e=>o.createElement(n,{...e},o.createElement(C,{d:"M12 13.75C14.2137 13.75 15.9998 15.5521 16 17.7646V19C16 19.5523 15.5523 20 15 20H3C2.44772 20 2 19.5523 2 19V17.7646C2.0002 15.5521 3.78628 13.75 6 13.75H12Z",fill:"currentColor"}),o.createElement(C,{d:"M18 13.75C20.2137 13.75 21.9998 15.5521 22 17.7646V18.9492C22 19.5015 21.5523 19.9492 21 19.9492H18V17.7646L17.9922 17.4561C17.9204 16.0371 17.3545 14.7454 16.4639 13.75H18Z",fill:"currentColor"}),o.createElement(C,{d:"M9 4C11.4853 4 13.5 6.01472 13.5 8.5C13.5 10.9853 11.4853 13 9 13C6.51472 13 4.5 10.9853 4.5 8.5C4.5 6.01472 6.51472 4 9 4Z",fill:"currentColor"}),o.createElement(C,{d:"M15 4C17.4853 4 19.5 6.01472 19.5 8.5C19.5 10.7809 17.8028 12.6634 15.6025 12.958C15.2117 12.6629 14.7855 12.4119 14.3281 12.2188C15.0651 11.1647 15.5 9.88373 15.5 8.5C15.5 6.82857 14.8686 5.30493 13.832 4.15332C14.2045 4.05348 14.596 4 15 4Z",fill:"currentColor"})),x=f;export{f as IconPeople21,x as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPeople21/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 IconPeople21: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 13.75C14.2137 13.75 15.9998 15.5521 16 17.7646V19C16 19.5523 15.5523 20 15 20H3C2.44772 20 2 19.5523 2 19V17.7646C2.0002 15.5521 3.78628 13.75 6 13.75H12Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M18 13.75C20.2137 13.75 21.9998 15.5521 22 17.7646V18.9492C22 19.5015 21.5523 19.9492 21 19.9492H18V17.7646L17.9922 17.4561C17.9204 16.0371 17.3545 14.7454 16.4639 13.75H18Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9 4C11.4853 4 13.5 6.01472 13.5 8.5C13.5 10.9853 11.4853 13 9 13C6.51472 13 4.5 10.9853 4.5 8.5C4.5 6.01472 6.51472 4 9 4Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M15 4C17.4853 4 19.5 6.01472 19.5 8.5C19.5 10.7809 17.8028 12.6634 15.6025 12.958C15.2117 12.6629 14.7855 12.4119 14.3281 12.2188C15.0651 11.1647 15.5 9.88373 15.5 8.5C15.5 6.82857 14.8686 5.30493 13.832 4.15332C14.2045 4.05348 14.596 4 15 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeople21;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iKACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gLACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8HACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qPACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPeople21","props","React","CentralIconBase","IconPeople21_default"]}
package/README.md CHANGED
@@ -1286,6 +1286,7 @@ Below is a complete list of available icons:
1286
1286
  - IconHead
1287
1287
  - IconPeople
1288
1288
  - IconPeople2
1289
+ - IconPeople21
1289
1290
  - IconPeopleAdd
1290
1291
  - IconPeopleAdd2
1291
1292
  - IconPeopleAdded
@@ -16814,6 +16814,20 @@
16814
16814
  "packageName": "round-filled-radius-0-stroke-2",
16815
16815
  "componentName": "IconPeople2"
16816
16816
  },
16817
+ {
16818
+ "category": "People",
16819
+ "svg": "<path d=\"M12 13.75C14.2137 13.75 15.9998 15.5521 16 17.7646V19C16 19.5523 15.5523 20 15 20H3C2.44772 20 2 19.5523 2 19V17.7646C2.0002 15.5521 3.78628 13.75 6 13.75H12Z\" fill=\"currentColor\"/><path d=\"M18 13.75C20.2137 13.75 21.9998 15.5521 22 17.7646V18.9492C22 19.5015 21.5523 19.9492 21 19.9492H18V17.7646L17.9922 17.4561C17.9204 16.0371 17.3545 14.7454 16.4639 13.75H18Z\" fill=\"currentColor\"/><path d=\"M9 4C11.4853 4 13.5 6.01472 13.5 8.5C13.5 10.9853 11.4853 13 9 13C6.51472 13 4.5 10.9853 4.5 8.5C4.5 6.01472 6.51472 4 9 4Z\" fill=\"currentColor\"/><path d=\"M15 4C17.4853 4 19.5 6.01472 19.5 8.5C19.5 10.7809 17.8028 12.6634 15.6025 12.958C15.2117 12.6629 14.7855 12.4119 14.3281 12.2188C15.0651 11.1647 15.5 9.88373 15.5 8.5C15.5 6.82857 14.8686 5.30493 13.832 4.15332C14.2045 4.05348 14.596 4 15 4Z\" fill=\"currentColor\"/>",
16820
+ "iconName": "people-2, user, group, friend",
16821
+ "variant": {
16822
+ "join": "round",
16823
+ "filled": "on",
16824
+ "radius": "0",
16825
+ "stroke": "2"
16826
+ },
16827
+ "createdAt": "2026-02-13T08:00:42.259331+00:00",
16828
+ "packageName": "round-filled-radius-0-stroke-2",
16829
+ "componentName": "IconPeople21"
16830
+ },
16817
16831
  {
16818
16832
  "category": "People",
16819
16833
  "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.4338 12 14.7376 12.3198 15.8707 12.8867C15.3325 13.4289 15 14.1756 15 15C13.3431 15 12 16.3431 12 18C12 19.6569 13.3431 21 15 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 d=\"M19 15C19 14.4477 18.5523 14 18 14C17.4477 14 17 14.4477 17 15V17H15C14.4477 17 14 17.4477 14 18C14 18.5523 14.4477 19 15 19H17V21C17 21.5523 17.4477 22 18 22C18.5523 22 19 21.5523 19 21V19H21C21.5523 19 22 18.5523 22 18C22 17.4477 21.5523 17 21 17H19V15Z\" fill=\"currentColor\"/>",
package/icons/index.d.ts CHANGED
@@ -1200,6 +1200,7 @@ export type CentralIconName =
1200
1200
  | "IconPencilWave"
1201
1201
  | "IconPeople"
1202
1202
  | "IconPeople2"
1203
+ | "IconPeople21"
1203
1204
  | "IconPeopleAdd"
1204
1205
  | "IconPeopleAdd2"
1205
1206
  | "IconPeopleAdded"
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.124",
3
+ "version": "1.1.125",
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": 1775,
14
+ "totalIcons": 1776,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 67,
@@ -1186,7 +1186,7 @@
1186
1186
  ]
1187
1187
  },
1188
1188
  "People": {
1189
- "count": 52,
1189
+ "count": 53,
1190
1190
  "icons": [
1191
1191
  "IconAura",
1192
1192
  "IconBathMan1",
@@ -1204,6 +1204,7 @@
1204
1204
  "IconHead",
1205
1205
  "IconPeople",
1206
1206
  "IconPeople2",
1207
+ "IconPeople21",
1207
1208
  "IconPeopleAdd",
1208
1209
  "IconPeopleAdd2",
1209
1210
  "IconPeopleAdded",
@@ -3178,6 +3179,7 @@
3178
3179
  "IconPencilWave": "pencil-wave, signature, write",
3179
3180
  "IconPeople": "people, user, person, avatar",
3180
3181
  "IconPeople2": "people-2",
3182
+ "IconPeople21": "people-2, user, group, friend",
3181
3183
  "IconPeopleAdd": "people-add, user-add",
3182
3184
  "IconPeopleAdd2": "people-add-2",
3183
3185
  "IconPeopleAdded": "people-added, user-added",
package/index.d.ts CHANGED
@@ -1199,6 +1199,7 @@ export { IconPencilSparkle, default as IconPencilSparkleDefault, } from "./IconP
1199
1199
  export { IconPencilWave, default as IconPencilWaveDefault, } from "./IconPencilWave";
1200
1200
  export { IconPeople, default as IconPeopleDefault } from "./IconPeople";
1201
1201
  export { IconPeople2, default as IconPeople2Default } from "./IconPeople2";
1202
+ export { IconPeople21, default as IconPeople21Default } from "./IconPeople21";
1202
1203
  export { IconPeopleAdd, default as IconPeopleAddDefault, } from "./IconPeopleAdd";
1203
1204
  export { IconPeopleAdd2, default as IconPeopleAdd2Default, } from "./IconPeopleAdd2";
1204
1205
  export { IconPeopleAdded, default as IconPeopleAddedDefault, } from "./IconPeopleAdded";