@central-icons-react-native/round-outlined-radius-2-stroke-1 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.
- package/IconPeople21/index.d.ts +4 -0
- package/IconPeople21/index.js +2 -0
- package/IconPeople21/index.js.map +1 -0
- package/IconPeople21/index.mjs +2 -0
- package/IconPeople21/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/tsx-icons.json +7 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var m=Object.create;var C=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var L=(o,r)=>{for(var e in r)C(o,e,{get:r[e],enumerable:!0})},i=(o,r,e,s)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of f(r))!I.call(o,t)&&t!==e&&C(o,t,{get:()=>r[t],enumerable:!(s=k(r,t))||s.enumerable});return o};var u=(o,r,e)=>(e=o!=null?m(B(o)):{},i(r||!o||!o.__esModule?C(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>i(C({},"__esModule",{value:!0}),o);var g={};L(g,{IconPeople21:()=>d,default:()=>x});module.exports=P(g);var n=u(require("react"));var a=u(require("react")),l=require("react-native-svg"),c=({children:o,size:r=24,...e})=>a.default.createElement(l.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 p=require("react-native-svg"),d=o=>n.default.createElement(c,{...o},n.default.createElement(p.Path,{d:"M13 8.5C13 10.7091 11.2091 12.5 9 12.5C6.79086 12.5 5 10.7091 5 8.5C5 6.29086 6.79086 4.5 9 4.5C11.2091 4.5 13 6.29086 13 8.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M14.5 4.50769C14.5827 4.50259 14.666 4.5 14.75 4.5C16.9591 4.5 18.75 6.29086 18.75 8.5C18.75 10.7091 16.9591 12.5 14.75 12.5C14.666 12.5 14.5827 12.4974 14.5 12.4923",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M2.5 19.5V17.515C2.5 15.8499 3.84315 14.5 5.5 14.5H12.5C14.1569 14.5 15.5 15.8499 15.5 17.515V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M21.5 19.5V17.515C21.5 15.8499 20.1569 14.5 18.5 14.5H17.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),x=d;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=\"M13 8.5C13 10.7091 11.2091 12.5 9 12.5C6.79086 12.5 5 10.7091 5 8.5C5 6.29086 6.79086 4.5 9 4.5C11.2091 4.5 13 6.29086 13 8.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.5 4.50769C14.5827 4.50259 14.666 4.5 14.75 4.5C16.9591 4.5 18.75 6.29086 18.75 8.5C18.75 10.7091 16.9591 12.5 14.75 12.5C14.666 12.5 14.5827 12.4974 14.5 12.4923\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.5 19.5V17.515C2.5 15.8499 3.84315 14.5 5.5 14.5H12.5C14.1569 14.5 15.5 15.8499 15.5 17.515V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21.5 19.5V17.515C21.5 15.8499 20.1569 14.5 18.5 14.5H17.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,iIACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wKACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qGACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8DACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,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 r from"react";import C from"react";import{Svg as s}from"react-native-svg";var t=({children:n,size:o=24,...p})=>C.createElement(s,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var i=n=>r.createElement(t,{...n},r.createElement(e,{d:"M13 8.5C13 10.7091 11.2091 12.5 9 12.5C6.79086 12.5 5 10.7091 5 8.5C5 6.29086 6.79086 4.5 9 4.5C11.2091 4.5 13 6.29086 13 8.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M14.5 4.50769C14.5827 4.50259 14.666 4.5 14.75 4.5C16.9591 4.5 18.75 6.29086 18.75 8.5C18.75 10.7091 16.9591 12.5 14.75 12.5C14.666 12.5 14.5827 12.4974 14.5 12.4923",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M2.5 19.5V17.515C2.5 15.8499 3.84315 14.5 5.5 14.5H12.5C14.1569 14.5 15.5 15.8499 15.5 17.515V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M21.5 19.5V17.515C21.5 15.8499 20.1569 14.5 18.5 14.5H17.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),I=i;export{i as IconPeople21,I 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=\"M13 8.5C13 10.7091 11.2091 12.5 9 12.5C6.79086 12.5 5 10.7091 5 8.5C5 6.29086 6.79086 4.5 9 4.5C11.2091 4.5 13 6.29086 13 8.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.5 4.50769C14.5827 4.50259 14.666 4.5 14.75 4.5C16.9591 4.5 18.75 6.29086 18.75 8.5C18.75 10.7091 16.9591 12.5 14.75 12.5C14.666 12.5 14.5827 12.4974 14.5 12.4923\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.5 19.5V17.515C2.5 15.8499 3.84315 14.5 5.5 14.5H12.5C14.1569 14.5 15.5 15.8499 15.5 17.515V19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21.5 19.5V17.515C21.5 15.8499 20.1569 14.5 18.5 14.5H17.25\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,iIACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wKACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qGACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8DACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPeople21","props","React","CentralIconBase","IconPeople21_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -16814,6 +16814,20 @@
|
|
|
16814
16814
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
16815
16815
|
"componentName": "IconPeople2"
|
|
16816
16816
|
},
|
|
16817
|
+
{
|
|
16818
|
+
"category": "People",
|
|
16819
|
+
"svg": "<path d=\"M13 8.5C13 10.7091 11.2091 12.5 9 12.5C6.79086 12.5 5 10.7091 5 8.5C5 6.29086 6.79086 4.5 9 4.5C11.2091 4.5 13 6.29086 13 8.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.5 4.50769C14.5827 4.50259 14.666 4.5 14.75 4.5C16.9591 4.5 18.75 6.29086 18.75 8.5C18.75 10.7091 16.9591 12.5 14.75 12.5C14.666 12.5 14.5827 12.4974 14.5 12.4923\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2.5 19.5V17.515C2.5 15.8499 3.84315 14.5 5.5 14.5H12.5C14.1569 14.5 15.5 15.8499 15.5 17.515V19.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.5 19.5V17.515C21.5 15.8499 20.1569 14.5 18.5 14.5H17.25\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
16820
|
+
"iconName": "people-2, user, group, friend",
|
|
16821
|
+
"variant": {
|
|
16822
|
+
"join": "round",
|
|
16823
|
+
"filled": "off",
|
|
16824
|
+
"radius": "2",
|
|
16825
|
+
"stroke": "1"
|
|
16826
|
+
},
|
|
16827
|
+
"createdAt": "2026-02-13T08:00:42.259331+00:00",
|
|
16828
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
16829
|
+
"componentName": "IconPeople21"
|
|
16830
|
+
},
|
|
16817
16831
|
{
|
|
16818
16832
|
"category": "People",
|
|
16819
16833
|
"svg": "<path d=\"M16 6.5C16 8.70914 14.2091 10.5 12 10.5C9.79086 10.5 8 8.70914 8 6.5C8 4.29086 9.79086 2.5 12 2.5C14.2091 2.5 16 4.29086 16 6.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.5009 13.3156C14.4675 12.7922 13.2896 12.5 12.0009 12.5C8.27245 12.5 5.47137 14.9458 4.4165 18.3604C4.0701 19.4817 5.01046 20.5 6.18402 20.5H12.5009\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.5 15.5V18.5M18.5 18.5V21.5M18.5 18.5H15.5M18.5 18.5H21.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
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-outlined-radius-2-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.125",
|
|
4
4
|
"style": "round-outlined-radius-2-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-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": 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":
|
|
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";
|