@central-icons-react-native/round-outlined-radius-2-stroke-1 1.1.123 → 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/IconBoat/index.d.ts +4 -0
- package/IconBoat/index.js +2 -0
- package/IconBoat/index.js.map +1 -0
- package/IconBoat/index.mjs +2 -0
- package/IconBoat/index.mjs.map +1 -0
- 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 +2 -0
- package/filtered-icons.json +34 -6
- package/icons/index.d.ts +2 -0
- package/icons-index.json +14 -11
- package/index.d.ts +2 -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 +20 -6
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},a=(o,r,e,s)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of d(r))!x.call(o,n)&&n!==e&&t(o,n,{get:()=>r[n],enumerable:!(s=B(r,n))||s.enumerable});return o};var m=(o,r,e)=>(e=o!=null?f(I(o)):{},a(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),g=o=>a(t({},"__esModule",{value:!0}),o);var L={};P(L,{IconBoat:()=>u,default:()=>k});module.exports=g(L);var p=m(require("react"));var c=m(require("react")),i=require("react-native-svg"),l=({children:o,size:r=24,...e})=>c.default.createElement(i.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 C=require("react-native-svg"),u=o=>p.default.createElement(l,{...o},p.default.createElement(C.Path,{d:"M13.5 16.5V3.30371C13.5 2.51839 12.6531 2.05813 12.0203 2.52318C9.75445 4.18831 5.48466 7.73631 3.5477 12.0526C3.25038 12.7152 3.81632 13.3994 4.53948 13.333C9.12373 12.9124 14.9853 12.9934 19.5499 13.367C20.2496 13.4242 20.7948 12.7715 20.5165 12.127C19.0891 8.8207 16.0255 6.11846 13.75 4.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M4.89951 20.7494L2.79976 18.1247C2.27595 17.4699 2.74212 16.5 3.58063 16.5H20.4194C21.2579 16.5 21.7241 17.4699 21.2002 18.1247L19.1005 20.7494C18.7209 21.2238 18.1463 21.5 17.5388 21.5H6.46125C5.85368 21.5 5.27906 21.2238 4.89951 20.7494Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),k=u;0&&(module.exports={IconBoat});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBoat/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 IconBoat: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.5 16.5V3.30371C13.5 2.51839 12.6531 2.05813 12.0203 2.52318C9.75445 4.18831 5.48466 7.73631 3.5477 12.0526C3.25038 12.7152 3.81632 13.3994 4.53948 13.333C9.12373 12.9124 14.9853 12.9934 19.5499 13.367C20.2496 13.4242 20.7948 12.7715 20.5165 12.127C19.0891 8.8207 16.0255 6.11846 13.75 4.75\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.89951 20.7494L2.79976 18.1247C2.27595 17.4699 2.74212 16.5 3.58063 16.5H20.4194C21.2579 16.5 21.7241 17.4699 21.2002 18.1247L19.1005 20.7494C18.7209 21.2238 18.1463 21.5 17.5388 21.5H6.46125C5.85368 21.5 5.27906 21.2238 4.89951 20.7494Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBoat;\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,cAAAE,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,EAAsCC,GAE/C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,wSACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kPACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconBoat_exports","__export","IconBoat","IconBoat_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBoat","props","React","CentralIconBase","IconBoat_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as s}from"react-native-svg";var n=({children:r,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"},r);import{Path as t}from"react-native-svg";var a=r=>e.createElement(n,{...r},e.createElement(t,{d:"M13.5 16.5V3.30371C13.5 2.51839 12.6531 2.05813 12.0203 2.52318C9.75445 4.18831 5.48466 7.73631 3.5477 12.0526C3.25038 12.7152 3.81632 13.3994 4.53948 13.333C9.12373 12.9124 14.9853 12.9934 19.5499 13.367C20.2496 13.4242 20.7948 12.7715 20.5165 12.127C19.0891 8.8207 16.0255 6.11846 13.75 4.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M4.89951 20.7494L2.79976 18.1247C2.27595 17.4699 2.74212 16.5 3.58063 16.5H20.4194C21.2579 16.5 21.7241 17.4699 21.2002 18.1247L19.1005 20.7494C18.7209 21.2238 18.1463 21.5 17.5388 21.5H6.46125C5.85368 21.5 5.27906 21.2238 4.89951 20.7494Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),x=a;export{a as IconBoat,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBoat/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 IconBoat: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.5 16.5V3.30371C13.5 2.51839 12.6531 2.05813 12.0203 2.52318C9.75445 4.18831 5.48466 7.73631 3.5477 12.0526C3.25038 12.7152 3.81632 13.3994 4.53948 13.333C9.12373 12.9124 14.9853 12.9934 19.5499 13.367C20.2496 13.4242 20.7948 12.7715 20.5165 12.127C19.0891 8.8207 16.0255 6.11846 13.75 4.75\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M4.89951 20.7494L2.79976 18.1247C2.27595 17.4699 2.74212 16.5 3.58063 16.5H20.4194C21.2579 16.5 21.7241 17.4699 21.2002 18.1247L19.1005 20.7494C18.7209 21.2238 18.1463 21.5 17.5388 21.5H6.46125C5.85368 21.5 5.27906 21.2238 4.89951 20.7494Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBoat;\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,EAAsCC,GAE/CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,wSACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kPACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBoat","props","React","CentralIconBase","IconBoat_default"]}
|
|
@@ -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
|
@@ -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
|
|
@@ -1970,6 +1971,7 @@ Below is a complete list of available icons:
|
|
|
1970
1971
|
|
|
1971
1972
|
### Vehicles
|
|
1972
1973
|
|
|
1974
|
+
- IconBoat
|
|
1973
1975
|
- IconSteeringWheel1
|
|
1974
1976
|
|
|
1975
1977
|
### Vehicles & Aircrafts
|
package/filtered-icons.json
CHANGED
|
@@ -3444,6 +3444,20 @@
|
|
|
3444
3444
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
3445
3445
|
"componentName": "IconBoard"
|
|
3446
3446
|
},
|
|
3447
|
+
{
|
|
3448
|
+
"category": "Vehicles",
|
|
3449
|
+
"svg": "<path d=\"M13.5 16.5V3.30371C13.5 2.51839 12.6531 2.05813 12.0203 2.52318C9.75445 4.18831 5.48466 7.73631 3.5477 12.0526C3.25038 12.7152 3.81632 13.3994 4.53948 13.333C9.12373 12.9124 14.9853 12.9934 19.5499 13.367C20.2496 13.4242 20.7948 12.7715 20.5165 12.127C19.0891 8.8207 16.0255 6.11846 13.75 4.75\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M4.89951 20.7494L2.79976 18.1247C2.27595 17.4699 2.74212 16.5 3.58063 16.5H20.4194C21.2579 16.5 21.7241 17.4699 21.2002 18.1247L19.1005 20.7494C18.7209 21.2238 18.1463 21.5 17.5388 21.5H6.46125C5.85368 21.5 5.27906 21.2238 4.89951 20.7494Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
3450
|
+
"iconName": "boat, ship, sailing",
|
|
3451
|
+
"variant": {
|
|
3452
|
+
"join": "round",
|
|
3453
|
+
"filled": "off",
|
|
3454
|
+
"radius": "2",
|
|
3455
|
+
"stroke": "1"
|
|
3456
|
+
},
|
|
3457
|
+
"createdAt": "2026-02-12T18:00:19.026123+00:00",
|
|
3458
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
3459
|
+
"componentName": "IconBoat"
|
|
3460
|
+
},
|
|
3447
3461
|
{
|
|
3448
3462
|
"category": "Typography",
|
|
3449
3463
|
"svg": "<path d=\"M5.5 10C5.5 11.1046 6.39543 12 7.5 12H13.5C15.7091 12 17.5 10.0972 17.5 7.75C17.5 5.40279 15.7091 3.5 13.5 3.5H7.5C6.39543 3.5 5.5 4.39543 5.5 5.5V10Z\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/><path d=\"M13.5 12H14.5C16.7091 12 18.5 13.9028 18.5 16.25C18.5 18.5972 16.7091 20.5 14.5 20.5H7.5C6.39543 20.5 5.5 19.6046 5.5 18.5V12\" stroke=\"currentColor\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/>",
|
|
@@ -12561,7 +12575,7 @@
|
|
|
12561
12575
|
{
|
|
12562
12576
|
"category": "Edit",
|
|
12563
12577
|
"svg": "<path d=\"M10.5 13.5H12.6716C13.202 13.5 13.7107 13.2893 14.0858 12.9142L20.5858 6.41421C21.3668 5.63316 21.3668 4.36684 20.5858 3.58579L20.4142 3.41421C19.6332 2.63317 18.3668 2.63317 17.5858 3.41421L11.0858 9.91421C10.7107 10.2893 10.5 10.798 10.5 11.3284V13.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.4124 21.5001C10.4024 21.2431 8.31961 20.6053 6.0785 18.3241C2.3324 14.5111 1.3734 9.30506 3.93652 6.69614C6.04251 4.55253 10.1234 4.71808 13.5 7.00005\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16.9998 10.5C19.914 13.9238 20.7163 17.1099 18.4804 18.9305C16.8054 20.2945 14.6859 18.7172 13.4492 17.5013\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
12564
|
-
"iconName": "highlight, mark, freehand",
|
|
12578
|
+
"iconName": "highlight, mark, freehand, drawing, paint",
|
|
12565
12579
|
"variant": {
|
|
12566
12580
|
"join": "round",
|
|
12567
12581
|
"filled": "off",
|
|
@@ -13233,7 +13247,7 @@
|
|
|
13233
13247
|
{
|
|
13234
13248
|
"category": "Edit",
|
|
13235
13249
|
"svg": "<path d=\"M11 6.5H19.5C20.6046 6.5 21.5 7.39543 21.5 8.5V15.5C21.5 16.6046 20.6046 17.5 19.5 17.5H11\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M6 6.5H4.5C3.39543 6.5 2.5 7.39543 2.5 8.5V15.5C2.5 16.6046 3.39543 17.5 4.5 17.5H6\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M8.5 3V21\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
|
|
13236
|
-
"iconName": "input-form, text-area, prompt",
|
|
13250
|
+
"iconName": "input-form, text-area, prompt, rename",
|
|
13237
13251
|
"variant": {
|
|
13238
13252
|
"join": "round",
|
|
13239
13253
|
"filled": "off",
|
|
@@ -16733,7 +16747,7 @@
|
|
|
16733
16747
|
{
|
|
16734
16748
|
"category": "Edit",
|
|
16735
16749
|
"svg": "<path d=\"M19.2628 3.08054L20.9195 4.73716C21.6935 5.51122 21.6935 6.76622 20.9195 7.54027L7.54027 20.9195C7.16856 21.2912 6.6644 21.5 6.13872 21.5H2.5V17.8613C2.5 17.3356 2.70883 16.8314 3.08054 16.4597L16.4597 3.08054C17.2338 2.30649 18.4888 2.30648 19.2628 3.08054Z\" stroke=\"currentColor\" stroke-linecap=\"round\"/><path d=\"M11.5 21.5H21.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
|
|
16736
|
-
"iconName": "pencil-line",
|
|
16750
|
+
"iconName": "pencil-line, signature, write",
|
|
16737
16751
|
"variant": {
|
|
16738
16752
|
"join": "round",
|
|
16739
16753
|
"filled": "off",
|
|
@@ -16761,7 +16775,7 @@
|
|
|
16761
16775
|
{
|
|
16762
16776
|
"category": "Edit",
|
|
16763
16777
|
"svg": "<path d=\"M18.8358 4.83573L18.1642 4.16415C17.3832 3.38311 16.1168 3.38311 15.3358 4.16416L3.08579 16.4142C2.71071 16.7892 2.5 17.2979 2.5 17.8284V20.4999H5.17157C5.70201 20.4999 6.21071 20.2892 6.58579 19.9142L18.8358 7.66416C19.6168 6.88311 19.6168 5.61678 18.8358 4.83573Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.25 17.75C21.25 17.75 20.0611 19.5444 18.166 19.5444C16.271 19.5444 15.4594 18.115 13.9866 18.115C12.5138 18.115 11.4964 18.9148 10.5 20\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
16764
|
-
"iconName": "pencil-wave",
|
|
16778
|
+
"iconName": "pencil-wave, signature, write",
|
|
16765
16779
|
"variant": {
|
|
16766
16780
|
"join": "round",
|
|
16767
16781
|
"filled": "off",
|
|
@@ -16800,6 +16814,20 @@
|
|
|
16800
16814
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
16801
16815
|
"componentName": "IconPeople2"
|
|
16802
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
|
+
},
|
|
16803
16831
|
{
|
|
16804
16832
|
"category": "People",
|
|
16805
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\"/>",
|
|
@@ -22291,7 +22319,7 @@
|
|
|
22291
22319
|
{
|
|
22292
22320
|
"category": "Edit",
|
|
22293
22321
|
"svg": "<path d=\"M1.5 5.5H9.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M1.5 9.5H6.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.5858 6.58573L20.4142 5.41416C19.6332 4.63311 18.3668 4.63311 17.5858 5.41416L8.08579 14.9142C7.71071 15.2892 7.5 15.7979 7.5 16.3284V19.4999H10.6716C11.202 19.4999 11.7107 19.2892 12.0858 18.9142L21.5858 9.41416C22.3668 8.63311 22.3668 7.36678 21.5858 6.58573Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
22294
|
-
"iconName": "text-edit, prompts, comment",
|
|
22322
|
+
"iconName": "text-edit, prompts, comment, draft",
|
|
22295
22323
|
"variant": {
|
|
22296
22324
|
"join": "round",
|
|
22297
22325
|
"filled": "off",
|
|
@@ -24713,7 +24741,7 @@
|
|
|
24713
24741
|
{
|
|
24714
24742
|
"category": "Edit",
|
|
24715
24743
|
"svg": "<path d=\"M19.9142 3.91416C19.1332 3.13311 17.8668 3.13311 17.0858 3.91415L12.0858 8.91416C11.7107 9.28923 11.5 9.79794 11.5 10.3284V12.4999H13.6716C14.202 12.4999 14.7107 12.2892 15.0858 11.9142L20.0858 6.91416C20.8668 6.13311 20.8668 4.86678 20.0858 4.08573L19.9142 3.91416Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.5 12.5H5.5C4.39543 12.5 3.5 13.3954 3.5 14.5C3.5 15.6046 4.39543 16.5 5.5 16.5H16.5C17.6046 16.5 18.5 17.3954 18.5 18.5C18.5 19.6046 17.6046 20.5 16.5 20.5H11.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
24716
|
-
"iconName": "writing",
|
|
24744
|
+
"iconName": "writing, sketching, drawing",
|
|
24717
24745
|
"variant": {
|
|
24718
24746
|
"join": "round",
|
|
24719
24747
|
"filled": "off",
|
package/icons/index.d.ts
CHANGED
|
@@ -245,6 +245,7 @@ export type CentralIconName =
|
|
|
245
245
|
| "IconBluetooth"
|
|
246
246
|
| "IconBlur"
|
|
247
247
|
| "IconBoard"
|
|
248
|
+
| "IconBoat"
|
|
248
249
|
| "IconBold"
|
|
249
250
|
| "IconBolt"
|
|
250
251
|
| "IconBomb"
|
|
@@ -1199,6 +1200,7 @@ export type CentralIconName =
|
|
|
1199
1200
|
| "IconPencilWave"
|
|
1200
1201
|
| "IconPeople"
|
|
1201
1202
|
| "IconPeople2"
|
|
1203
|
+
| "IconPeople21"
|
|
1202
1204
|
| "IconPeopleAdd"
|
|
1203
1205
|
| "IconPeopleAdd2"
|
|
1204
1206
|
| "IconPeopleAdded"
|
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",
|
|
@@ -1908,8 +1909,8 @@
|
|
|
1908
1909
|
]
|
|
1909
1910
|
},
|
|
1910
1911
|
"Vehicles": {
|
|
1911
|
-
"count":
|
|
1912
|
-
"icons": ["IconSteeringWheel1"]
|
|
1912
|
+
"count": 2,
|
|
1913
|
+
"icons": ["IconBoat", "IconSteeringWheel1"]
|
|
1913
1914
|
},
|
|
1914
1915
|
"Vehicles & Aircrafts": {
|
|
1915
1916
|
"count": 35,
|
|
@@ -2223,6 +2224,7 @@
|
|
|
2223
2224
|
"IconBluetooth": "bluetooth",
|
|
2224
2225
|
"IconBlur": "blur",
|
|
2225
2226
|
"IconBoard": "board, moodboard, layout, template",
|
|
2227
|
+
"IconBoat": "boat, ship, sailing",
|
|
2226
2228
|
"IconBold": "bold",
|
|
2227
2229
|
"IconBolt": "bolt",
|
|
2228
2230
|
"IconBomb": "bomb, boom",
|
|
@@ -2874,7 +2876,7 @@
|
|
|
2874
2876
|
"IconHeart": "heart, like, health, life, favorite",
|
|
2875
2877
|
"IconHeart2": "heart-2, like, health, life, fav",
|
|
2876
2878
|
"IconHeartBeat": "heart-beat, heart rate, pulse",
|
|
2877
|
-
"IconHighlight": "highlight, mark, freehand",
|
|
2879
|
+
"IconHighlight": "highlight, mark, freehand, drawing, paint",
|
|
2878
2880
|
"IconHighlights": "highlights",
|
|
2879
2881
|
"IconHistory": "history, back, timeline",
|
|
2880
2882
|
"IconHome": "home, house",
|
|
@@ -2922,7 +2924,7 @@
|
|
|
2922
2924
|
"IconInfinity": "infinity, loop, boomerang",
|
|
2923
2925
|
"IconInitiatives": "initiatives, nav, rooting",
|
|
2924
2926
|
"IconInjection": "injection",
|
|
2925
|
-
"IconInputForm": "input-form, text-area, prompt",
|
|
2927
|
+
"IconInputForm": "input-form, text-area, prompt, rename",
|
|
2926
2928
|
"IconInsights": "insights, analyze",
|
|
2927
2929
|
"IconInstagram": "instagram",
|
|
2928
2930
|
"IconIntegrations": "integrations, frames, keyframes, interactions",
|
|
@@ -3172,11 +3174,12 @@
|
|
|
3172
3174
|
"IconPayment": "payment, flow, connection",
|
|
3173
3175
|
"IconPeace": "peace",
|
|
3174
3176
|
"IconPencil": "pencil, edit, write",
|
|
3175
|
-
"IconPencilLine": "pencil-line",
|
|
3177
|
+
"IconPencilLine": "pencil-line, signature, write",
|
|
3176
3178
|
"IconPencilSparkle": "pencil-sparkle, magic pencil, magic brush",
|
|
3177
|
-
"IconPencilWave": "pencil-wave",
|
|
3179
|
+
"IconPencilWave": "pencil-wave, signature, write",
|
|
3178
3180
|
"IconPeople": "people, user, person, avatar",
|
|
3179
3181
|
"IconPeople2": "people-2",
|
|
3182
|
+
"IconPeople21": "people-2, user, group, friend",
|
|
3180
3183
|
"IconPeopleAdd": "people-add, user-add",
|
|
3181
3184
|
"IconPeopleAdd2": "people-add-2",
|
|
3182
3185
|
"IconPeopleAdded": "people-added, user-added",
|
|
@@ -3569,7 +3572,7 @@
|
|
|
3569
3572
|
"IconTextareaDrag": "textarea-drag",
|
|
3570
3573
|
"IconTextBlock": "text-block",
|
|
3571
3574
|
"IconTextColor": "text-color",
|
|
3572
|
-
"IconTextEdit": "text-edit, prompts, comment",
|
|
3575
|
+
"IconTextEdit": "text-edit, prompts, comment, draft",
|
|
3573
3576
|
"IconTextIndentLeft": "text-indent-left",
|
|
3574
3577
|
"IconTextIndentRight": "text-indent-right",
|
|
3575
3578
|
"IconTextIndicator": "text-indicator",
|
|
@@ -3742,7 +3745,7 @@
|
|
|
3742
3745
|
"IconWrite": "write, edit-list, list",
|
|
3743
3746
|
"IconWrite1": "write-1, fountain-pen",
|
|
3744
3747
|
"IconWrite2": "write-2, fountain-pen",
|
|
3745
|
-
"IconWriting": "writing",
|
|
3748
|
+
"IconWriting": "writing, sketching, drawing",
|
|
3746
3749
|
"IconX": "x",
|
|
3747
3750
|
"IconXbox": "xbox",
|
|
3748
3751
|
"IconYen": "yen, currency, money, coin",
|
package/index.d.ts
CHANGED
|
@@ -244,6 +244,7 @@ export { IconBluesky, default as IconBlueskyDefault } from "./IconBluesky";
|
|
|
244
244
|
export { IconBluetooth, default as IconBluetoothDefault, } from "./IconBluetooth";
|
|
245
245
|
export { IconBlur, default as IconBlurDefault } from "./IconBlur";
|
|
246
246
|
export { IconBoard, default as IconBoardDefault } from "./IconBoard";
|
|
247
|
+
export { IconBoat, default as IconBoatDefault } from "./IconBoat";
|
|
247
248
|
export { IconBold, default as IconBoldDefault } from "./IconBold";
|
|
248
249
|
export { IconBolt, default as IconBoltDefault } from "./IconBolt";
|
|
249
250
|
export { IconBomb, default as IconBombDefault } from "./IconBomb";
|
|
@@ -1198,6 +1199,7 @@ export { IconPencilSparkle, default as IconPencilSparkleDefault, } from "./IconP
|
|
|
1198
1199
|
export { IconPencilWave, default as IconPencilWaveDefault, } from "./IconPencilWave";
|
|
1199
1200
|
export { IconPeople, default as IconPeopleDefault } from "./IconPeople";
|
|
1200
1201
|
export { IconPeople2, default as IconPeople2Default } from "./IconPeople2";
|
|
1202
|
+
export { IconPeople21, default as IconPeople21Default } from "./IconPeople21";
|
|
1201
1203
|
export { IconPeopleAdd, default as IconPeopleAddDefault, } from "./IconPeopleAdd";
|
|
1202
1204
|
export { IconPeopleAdd2, default as IconPeopleAdd2Default, } from "./IconPeopleAdd2";
|
|
1203
1205
|
export { IconPeopleAdded, default as IconPeopleAddedDefault, } from "./IconPeopleAdded";
|