@central-icons-react-native/round-outlined-radius-0-stroke-1.5 1.1.124 → 1.1.126

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.
Files changed (42) hide show
  1. package/IconPencil2/index.d.ts +4 -0
  2. package/IconPencil2/index.js +2 -0
  3. package/IconPencil2/index.js.map +1 -0
  4. package/IconPencil2/index.mjs +2 -0
  5. package/IconPencil2/index.mjs.map +1 -0
  6. package/IconPencil3/index.d.ts +4 -0
  7. package/IconPencil3/index.js +2 -0
  8. package/IconPencil3/index.js.map +1 -0
  9. package/IconPencil3/index.mjs +2 -0
  10. package/IconPencil3/index.mjs.map +1 -0
  11. package/IconPencilAi/index.d.ts +4 -0
  12. package/IconPencilAi/index.js +2 -0
  13. package/IconPencilAi/index.js.map +1 -0
  14. package/IconPencilAi/index.mjs +2 -0
  15. package/IconPencilAi/index.mjs.map +1 -0
  16. package/IconPeople21/index.d.ts +4 -0
  17. package/IconPeople21/index.js +2 -0
  18. package/IconPeople21/index.js.map +1 -0
  19. package/IconPeople21/index.mjs +2 -0
  20. package/IconPeople21/index.mjs.map +1 -0
  21. package/IconSelectLasso/index.d.ts +4 -0
  22. package/IconSelectLasso/index.js +2 -0
  23. package/IconSelectLasso/index.js.map +1 -0
  24. package/IconSelectLasso/index.mjs +2 -0
  25. package/IconSelectLasso/index.mjs.map +1 -0
  26. package/IconSelectLassoDashed/index.d.ts +4 -0
  27. package/IconSelectLassoDashed/index.js +2 -0
  28. package/IconSelectLassoDashed/index.js.map +1 -0
  29. package/IconSelectLassoDashed/index.mjs +2 -0
  30. package/IconSelectLassoDashed/index.mjs.map +1 -0
  31. package/README.md +6 -0
  32. package/filtered-icons.json +84 -0
  33. package/icons/index.d.ts +6 -0
  34. package/icons-index.json +16 -4
  35. package/index.d.ts +6 -0
  36. package/index.js +1 -1
  37. package/index.js.map +1 -1
  38. package/index.mjs +1 -1
  39. package/index.mjs.map +1 -1
  40. package/license-check.js +1 -1
  41. package/package.json +1 -1
  42. package/tsx-icons.json +42 -0
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPencil2: FC<CentralIconBaseProps>;
4
+ export default IconPencil2;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var n=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(a=d(o,e))||a.enumerable});return r};var l=(r,o,t)=>(t=r!=null?f(I(r)):{},C(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),L=r=>C(n({},"__esModule",{value:!0}),r);var h={};x(h,{IconPencil2:()=>u,default:()=>g});module.exports=L(h);var p=l(require("react"));var m=l(require("react")),c=require("react-native-svg"),i=({children:r,size:o=24,...t})=>m.default.createElement(c.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var s=require("react-native-svg"),u=r=>p.default.createElement(i,{...r},p.default.createElement(s.Path,{d:"M15.0294 3.82353L4.27941 14.5735L3.25 20.75L9.42647 19.7206L20.1765 8.97059C21.5978 7.54927 21.5978 5.24485 20.1765 3.82353C18.7552 2.40221 16.4507 2.40221 15.0294 3.82353Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(s.Path,{d:"M14 5L19 10",stroke:"currentColor",strokeWidth:"1.5"})),g=u;0&&(module.exports={IconPencil2});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPencil2/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 IconPencil2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.0294 3.82353L4.27941 14.5735L3.25 20.75L9.42647 19.7206L20.1765 8.97059C21.5978 7.54927 21.5978 5.24485 20.1765 3.82353C18.7552 2.40221 16.4507 2.40221 15.0294 3.82353Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path d=\"M14 5L19 10\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n </CentralIconBase>\n );\n};\n\nexport default IconPencil2;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+KACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,cAAc,OAAO,eAAe,YAAY,MAAM,CAChE,EAIGE,EAAQJ","names":["IconPencil2_exports","__export","IconPencil2","IconPencil2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPencil2","props","React","CentralIconBase","IconPencil2_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import s from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...p})=>s.createElement(a,{...p,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 C=o=>t.createElement(e,{...o},t.createElement(n,{d:"M15.0294 3.82353L4.27941 14.5735L3.25 20.75L9.42647 19.7206L20.1765 8.97059C21.5978 7.54927 21.5978 5.24485 20.1765 3.82353C18.7552 2.40221 16.4507 2.40221 15.0294 3.82353Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement(n,{d:"M14 5L19 10",stroke:"currentColor",strokeWidth:"1.5"})),P=C;export{C as IconPencil2,P as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPencil2/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 IconPencil2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.0294 3.82353L4.27941 14.5735L3.25 20.75L9.42647 19.7206L20.1765 8.97059C21.5978 7.54927 21.5978 5.24485 20.1765 3.82353C18.7552 2.40221 16.4507 2.40221 15.0294 3.82353Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path d=\"M14 5L19 10\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n </CentralIconBase>\n );\n};\n\nexport default IconPencil2;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+KACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,cAAc,OAAO,eAAe,YAAY,MAAM,CAChE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPencil2","props","React","CentralIconBase","IconPencil2_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPencil3: FC<CentralIconBaseProps>;
4
+ export default IconPencil3;
@@ -0,0 +1,2 @@
1
+ "use strict";var d=Object.create;var n=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!L.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=f(o,t))||a.enumerable});return r};var c=(r,o,e)=>(e=r!=null?d(I(r)):{},C(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),k=r=>C(n({},"__esModule",{value:!0}),r);var g={};P(g,{IconPencil3:()=>u,default:()=>x});module.exports=k(g);var p=c(require("react"));var i=c(require("react")),l=require("react-native-svg"),m=({children:r,size:o=24,...e})=>i.default.createElement(l.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 s=require("react-native-svg"),u=r=>p.default.createElement(m,{...r},p.default.createElement(s.Path,{d:"M15.0294 3.82353L4.27941 14.5735L3.25 20.75L9.42647 19.7206L20.1765 8.97059C21.5978 7.54927 21.5978 5.24485 20.1765 3.82353C18.7552 2.40221 16.4507 2.40221 15.0294 3.82353Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(s.Path,{d:"M17.5 6.5L14.5 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),x=u;0&&(module.exports={IconPencil3});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPencil3/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 IconPencil3: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.0294 3.82353L4.27941 14.5735L3.25 20.75L9.42647 19.7206L20.1765 8.97059C21.5978 7.54927 21.5978 5.24485 20.1765 3.82353C18.7552 2.40221 16.4507 2.40221 15.0294 3.82353Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5 6.5L14.5 9.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPencil3;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+KACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconPencil3_exports","__export","IconPencil3","IconPencil3_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPencil3","props","React","CentralIconBase","IconPencil3_default"]}
@@ -0,0 +1,2 @@
1
+ import e from"react";import s from"react";import{Svg as a}from"react-native-svg";var t=({children:o,size:r=24,...p})=>s.createElement(a,{...p,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 C=o=>e.createElement(t,{...o},e.createElement(n,{d:"M15.0294 3.82353L4.27941 14.5735L3.25 20.75L9.42647 19.7206L20.1765 8.97059C21.5978 7.54927 21.5978 5.24485 20.1765 3.82353C18.7552 2.40221 16.4507 2.40221 15.0294 3.82353Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(n,{d:"M17.5 6.5L14.5 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),L=C;export{C as IconPencil3,L as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPencil3/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 IconPencil3: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.0294 3.82353L4.27941 14.5735L3.25 20.75L9.42647 19.7206L20.1765 8.97059C21.5978 7.54927 21.5978 5.24485 20.1765 3.82353C18.7552 2.40221 16.4507 2.40221 15.0294 3.82353Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17.5 6.5L14.5 9.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPencil3;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+KACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qBACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPencil3","props","React","CentralIconBase","IconPencil3_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPencilAi: FC<CentralIconBaseProps>;
4
+ export default IconPencilAi;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var C=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of d(o))!I.call(r,e)&&e!==t&&C(r,e,{get:()=>o[e],enumerable:!(s=f(o,e))||s.enumerable});return r};var L=(r,o,t)=>(t=r!=null?u(B(r)):{},l(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>l(C({},"__esModule",{value:!0}),r);var h={};P(h,{IconPencilAi:()=>c,default:()=>g});module.exports=x(h);var n=L(require("react"));var a=L(require("react")),i=require("react-native-svg"),m=({children:r,size:o=24,...t})=>a.default.createElement(i.Svg,{...t,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"),c=r=>n.default.createElement(m,{...r},n.default.createElement(p.Path,{d:"M16.0294 4.82353L5.27941 15.5735L4.25 21.75L10.4265 20.7206L21.1765 9.97059C22.5978 8.54927 22.5978 6.24485 21.1765 4.82353C19.7552 3.40221 17.4507 3.40221 16.0294 4.82353Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(p.Path,{d:"M15 6L20 11",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement(p.Path,{d:"M7.24045 4.18518L6.54359 2.37334C6.45708 2.14842 6.24099 2 6 2C5.75901 2 5.54292 2.14842 5.45641 2.37334L4.75955 4.18518C4.65797 4.44927 4.44927 4.65797 4.18518 4.75955L2.37334 5.45641C2.14842 5.54292 2 5.75901 2 6C2 6.24099 2.14842 6.45708 2.37334 6.54359L4.18518 7.24045C4.44927 7.34203 4.65797 7.55073 4.75955 7.81482L5.45641 9.62666C5.54292 9.85158 5.75901 10 6 10C6.24099 10 6.45708 9.85158 6.54359 9.62666L7.24045 7.81482C7.34203 7.55073 7.55073 7.34203 7.81482 7.24045L9.62666 6.54359C9.85158 6.45708 10 6.24099 10 6C10 5.75901 9.85158 5.54292 9.62666 5.45641L7.81482 4.75955C7.55073 4.65797 7.34203 4.44927 7.24045 4.18518Z",fill:"currentColor"})),g=c;0&&(module.exports={IconPencilAi});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPencilAi/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 IconPencilAi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.0294 4.82353L5.27941 15.5735L4.25 21.75L10.4265 20.7206L21.1765 9.97059C22.5978 8.54927 22.5978 6.24485 21.1765 4.82353C19.7552 3.40221 17.4507 3.40221 16.0294 4.82353Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path d=\"M15 6L20 11\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <Path\n d=\"M7.24045 4.18518L6.54359 2.37334C6.45708 2.14842 6.24099 2 6 2C5.75901 2 5.54292 2.14842 5.45641 2.37334L4.75955 4.18518C4.65797 4.44927 4.44927 4.65797 4.18518 4.75955L2.37334 5.45641C2.14842 5.54292 2 5.75901 2 6C2 6.24099 2.14842 6.45708 2.37334 6.54359L4.18518 7.24045C4.44927 7.34203 4.65797 7.55073 4.75955 7.81482L5.45641 9.62666C5.54292 9.85158 5.75901 10 6 10C6.24099 10 6.45708 9.85158 6.54359 9.62666L7.24045 7.81482C7.34203 7.55073 7.55073 7.34203 7.81482 7.24045L9.62666 6.54359C9.85158 6.45708 10 6.24099 10 6C10 5.75901 9.85158 5.54292 9.62666 5.45641L7.81482 4.75955C7.55073 4.65797 7.34203 4.44927 7.24045 4.18518Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPencilAi;\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,+KACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,cAAc,OAAO,eAAe,YAAY,MAAM,EAC9D,EAAAA,QAAA,cAAC,QACC,EAAE,0nBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPencilAi_exports","__export","IconPencilAi","IconPencilAi_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPencilAi","props","React","CentralIconBase","IconPencilAi_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import p from"react";import{Svg as s}from"react-native-svg";var n=({children:t,size:r=24,...C})=>p.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as e}from"react-native-svg";var l=t=>o.createElement(n,{...t},o.createElement(e,{d:"M16.0294 4.82353L5.27941 15.5735L4.25 21.75L10.4265 20.7206L21.1765 9.97059C22.5978 8.54927 22.5978 6.24485 21.1765 4.82353C19.7552 3.40221 17.4507 3.40221 16.0294 4.82353Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M15 6L20 11",stroke:"currentColor",strokeWidth:"1.5"}),o.createElement(e,{d:"M7.24045 4.18518L6.54359 2.37334C6.45708 2.14842 6.24099 2 6 2C5.75901 2 5.54292 2.14842 5.45641 2.37334L4.75955 4.18518C4.65797 4.44927 4.44927 4.65797 4.18518 4.75955L2.37334 5.45641C2.14842 5.54292 2 5.75901 2 6C2 6.24099 2.14842 6.45708 2.37334 6.54359L4.18518 7.24045C4.44927 7.34203 4.65797 7.55073 4.75955 7.81482L5.45641 9.62666C5.54292 9.85158 5.75901 10 6 10C6.24099 10 6.45708 9.85158 6.54359 9.62666L7.24045 7.81482C7.34203 7.55073 7.55073 7.34203 7.81482 7.24045L9.62666 6.54359C9.85158 6.45708 10 6.24099 10 6C10 5.75901 9.85158 5.54292 9.62666 5.45641L7.81482 4.75955C7.55073 4.65797 7.34203 4.44927 7.24045 4.18518Z",fill:"currentColor"})),I=l;export{l as IconPencilAi,I as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPencilAi/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 IconPencilAi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M16.0294 4.82353L5.27941 15.5735L4.25 21.75L10.4265 20.7206L21.1765 9.97059C22.5978 8.54927 22.5978 6.24485 21.1765 4.82353C19.7552 3.40221 17.4507 3.40221 16.0294 4.82353Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path d=\"M15 6L20 11\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <Path\n d=\"M7.24045 4.18518L6.54359 2.37334C6.45708 2.14842 6.24099 2 6 2C5.75901 2 5.54292 2.14842 5.45641 2.37334L4.75955 4.18518C4.65797 4.44927 4.44927 4.65797 4.18518 4.75955L2.37334 5.45641C2.14842 5.54292 2 5.75901 2 6C2 6.24099 2.14842 6.45708 2.37334 6.54359L4.18518 7.24045C4.44927 7.34203 4.65797 7.55073 4.75955 7.81482L5.45641 9.62666C5.54292 9.85158 5.75901 10 6 10C6.24099 10 6.45708 9.85158 6.54359 9.62666L7.24045 7.81482C7.34203 7.55073 7.55073 7.34203 7.81482 7.24045L9.62666 6.54359C9.85158 6.45708 10 6.24099 10 6C10 5.75901 9.85158 5.54292 9.62666 5.45641L7.81482 4.75955C7.55073 4.65797 7.34203 4.44927 7.24045 4.18518Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPencilAi;\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,+KACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,cAAc,OAAO,eAAe,YAAY,MAAM,EAC9DG,EAAA,cAACH,EAAA,CACC,EAAE,0nBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPencilAi","props","React","CentralIconBase","IconPencilAi_default"]}
@@ -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 c=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(o,r)=>{for(var e in r)p(o,e,{get:r[e],enumerable:!0})},i=(o,r,e,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of f(r))!B.call(o,t)&&t!==e&&p(o,t,{get:()=>r[t],enumerable:!(C=m(r,t))||C.enumerable});return o};var d=(o,r,e)=>(e=o!=null?c(h(o)):{},i(r||!o||!o.__esModule?p(e,"default",{value:o,enumerable:!0}):e,o)),L=o=>i(p({},"__esModule",{value:!0}),o);var x={};I(x,{IconPeople21:()=>l,default:()=>P});module.exports=L(x);var n=d(require("react"));var u=d(require("react")),a=require("react-native-svg"),k=({children:o,size:r=24,...e})=>u.default.createElement(a.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 s=require("react-native-svg"),l=o=>n.default.createElement(k,{...o},n.default.createElement(s.Path,{d:"M12.75 8.5C12.75 10.5711 11.0711 12.25 9 12.25C6.92893 12.25 5.25 10.5711 5.25 8.5C5.25 6.42893 6.92893 4.75 9 4.75C11.0711 4.75 12.75 6.42893 12.75 8.5Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M14.9997 4.75C17.0708 4.75 18.7497 6.42893 18.7497 8.5C18.7497 10.5711 17.0708 12.25 14.9997 12.25C14.975 12.25 14.9504 12.2498 14.9258 12.2493",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M2.75 19.25V17.765C2.75 16.0999 4.09315 14.75 5.75 14.75H12C13.6569 14.75 15 16.0999 15 17.765V19.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(s.Path,{d:"M21.25 19.25V17.765C21.25 16.0999 19.9069 14.75 18.25 14.75H17.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),P=l;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.75 8.5C12.75 10.5711 11.0711 12.25 9 12.25C6.92893 12.25 5.25 10.5711 5.25 8.5C5.25 6.42893 6.92893 4.75 9 4.75C11.0711 4.75 12.75 6.42893 12.75 8.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.9997 4.75C17.0708 4.75 18.7497 6.42893 18.7497 8.5C18.7497 10.5711 17.0708 12.25 14.9997 12.25C14.975 12.25 14.9504 12.2498 14.9258 12.2493\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.75 19.25V17.765C2.75 16.0999 4.09315 14.75 5.75 14.75H12C13.6569 14.75 15 16.0999 15 17.765V19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21.25 19.25V17.765C21.25 16.0999 19.9069 14.75 18.25 14.75H17.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\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,4JACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kJACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uGACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mEACF,OAAO,eACP,YAAY,MACZ,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 p from"react";import{Svg as C}from"react-native-svg";var t=({children:n,size:o=24,...s})=>p.createElement(C,{...s,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:"M12.75 8.5C12.75 10.5711 11.0711 12.25 9 12.25C6.92893 12.25 5.25 10.5711 5.25 8.5C5.25 6.42893 6.92893 4.75 9 4.75C11.0711 4.75 12.75 6.42893 12.75 8.5Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M14.9997 4.75C17.0708 4.75 18.7497 6.42893 18.7497 8.5C18.7497 10.5711 17.0708 12.25 14.9997 12.25C14.975 12.25 14.9504 12.2498 14.9258 12.2493",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M2.75 19.25V17.765C2.75 16.0999 4.09315 14.75 5.75 14.75H12C13.6569 14.75 15 16.0999 15 17.765V19.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M21.25 19.25V17.765C21.25 16.0999 19.9069 14.75 18.25 14.75H17.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),B=i;export{i as IconPeople21,B 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.75 8.5C12.75 10.5711 11.0711 12.25 9 12.25C6.92893 12.25 5.25 10.5711 5.25 8.5C5.25 6.42893 6.92893 4.75 9 4.75C11.0711 4.75 12.75 6.42893 12.75 8.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.9997 4.75C17.0708 4.75 18.7497 6.42893 18.7497 8.5C18.7497 10.5711 17.0708 12.25 14.9997 12.25C14.975 12.25 14.9504 12.2498 14.9258 12.2493\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2.75 19.25V17.765C2.75 16.0999 4.09315 14.75 5.75 14.75H12C13.6569 14.75 15 16.0999 15 17.765V19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21.25 19.25V17.765C21.25 16.0999 19.9069 14.75 18.25 14.75H17.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\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,4JACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kJACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uGACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mEACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPeople21","props","React","CentralIconBase","IconPeople21_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconSelectLasso: FC<CentralIconBaseProps>;
4
+ export default IconSelectLasso;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},a=(o,r,e,s)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of I(r))!P.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(s=B(r,t))||s.enumerable});return o};var C=(o,r,e)=>(e=o!=null?u(x(o)):{},a(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),g=o=>a(n({},"__esModule",{value:!0}),o);var v={};d(v,{IconSelectLasso:()=>f,default:()=>h});module.exports=g(v);var p=C(require("react"));var m=C(require("react")),c=require("react-native-svg"),l=({children:o,size:r=24,...e})=>m.default.createElement(c.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 i=require("react-native-svg"),f=o=>p.default.createElement(l,{...o},p.default.createElement(i.Path,{d:"M12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 4.29167 9.94444 5.31944 8.40278 9.94444",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),h=f;0&&(module.exports={IconSelectLasso});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconSelectLasso/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 IconSelectLasso: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 4.29167 9.94444 5.31944 8.40278 9.94444\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSelectLasso;\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,qBAAAE,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,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,oKACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconSelectLasso_exports","__export","IconSelectLasso","IconSelectLasso_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSelectLasso","props","React","CentralIconBase","IconSelectLasso_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import p from"react";import{Svg as s}from"react-native-svg";var e=({children:r,size:o=24,...n})=>p.createElement(s,{...n,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 a}from"react-native-svg";var C=r=>t.createElement(e,{...r},t.createElement(a,{d:"M12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 4.29167 9.94444 5.31944 8.40278 9.94444",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),P=C;export{C as IconSelectLasso,P as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconSelectLasso/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 IconSelectLasso: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 4.29167 9.94444 5.31944 8.40278 9.94444\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSelectLasso;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,oKACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSelectLasso","props","React","CentralIconBase","IconSelectLasso_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconSelectLassoDashed: FC<CentralIconBaseProps>;
4
+ export default IconSelectLassoDashed;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!h.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=B(o,t))||a.enumerable});return r};var C=(r,o,e)=>(e=r!=null?u(d(r)):{},s(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>s(n({},"__esModule",{value:!0}),r);var k={};x(k,{IconSelectLassoDashed:()=>f,default:()=>g});module.exports=P(k);var p=C(require("react"));var m=C(require("react")),c=require("react-native-svg"),l=({children:r,size:o=24,...e})=>m.default.createElement(c.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 i=require("react-native-svg"),f=r=>p.default.createElement(l,{...r},p.default.createElement(i.Path,{d:"M12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 4.29167 9.94444 5.31944 8.40278 9.94444",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",strokeDasharray:"4 4"})),g=f;0&&(module.exports={IconSelectLassoDashed});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconSelectLassoDashed/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 IconSelectLassoDashed: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 4.29167 9.94444 5.31944 8.40278 9.94444\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeDasharray=\"4 4\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSelectLassoDashed;\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,2BAAAE,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,EAAmDC,GAE5D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,oKACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACf,gBAAgB,MAClB,CACF,EAIGE,EAAQJ","names":["IconSelectLassoDashed_exports","__export","IconSelectLassoDashed","IconSelectLassoDashed_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSelectLassoDashed","props","React","CentralIconBase","IconSelectLassoDashed_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import p from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...n})=>p.createElement(a,{...n,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 s}from"react-native-svg";var C=o=>t.createElement(e,{...o},t.createElement(s,{d:"M12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 4.29167 9.94444 5.31944 8.40278 9.94444",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",strokeDasharray:"4 4"})),h=C;export{C as IconSelectLassoDashed,h as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconSelectLassoDashed/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 IconSelectLassoDashed: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 4.29167 9.94444 5.31944 8.40278 9.94444\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeDasharray=\"4 4\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSelectLassoDashed;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,oKACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACf,gBAAgB,MAClB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSelectLassoDashed","props","React","CentralIconBase","IconSelectLassoDashed_default"]}
package/README.md CHANGED
@@ -677,6 +677,9 @@ Below is a complete list of available icons:
677
677
  - IconPaintBucket
678
678
  - IconPaintBucketDrop
679
679
  - IconPencil
680
+ - IconPencil2
681
+ - IconPencil3
682
+ - IconPencilAi
680
683
  - IconPencilLine
681
684
  - IconPencilWave
682
685
  - IconRecKeyframe
@@ -687,6 +690,8 @@ Below is a complete list of available icons:
687
690
  - IconRewrite1
688
691
  - IconRewrite2
689
692
  - IconRuler
693
+ - IconSelectLasso
694
+ - IconSelectLassoDashed
690
695
  - IconShaderEffect
691
696
  - IconShaders
692
697
  - IconSignature
@@ -1286,6 +1291,7 @@ Below is a complete list of available icons:
1286
1291
  - IconHead
1287
1292
  - IconPeople
1288
1293
  - IconPeople2
1294
+ - IconPeople21
1289
1295
  - IconPeopleAdd
1290
1296
  - IconPeopleAdd2
1291
1297
  - IconPeopleAdded
@@ -16744,6 +16744,48 @@
16744
16744
  "packageName": "round-outlined-radius-0-stroke-1.5",
16745
16745
  "componentName": "IconPencil"
16746
16746
  },
16747
+ {
16748
+ "category": "Edit",
16749
+ "svg": "<path d=\"M15.0294 3.82353L4.27941 14.5735L3.25 20.75L9.42647 19.7206L20.1765 8.97059C21.5978 7.54927 21.5978 5.24485 20.1765 3.82353C18.7552 2.40221 16.4507 2.40221 15.0294 3.82353Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14 5L19 10\" stroke=\"currentColor\" stroke-width=\"1.5\"/>",
16750
+ "iconName": "pencil-2, edit, write, prompt",
16751
+ "variant": {
16752
+ "join": "round",
16753
+ "filled": "off",
16754
+ "radius": "0",
16755
+ "stroke": "1.5"
16756
+ },
16757
+ "createdAt": "2026-02-13T09:00:26.192615+00:00",
16758
+ "packageName": "round-outlined-radius-0-stroke-1.5",
16759
+ "componentName": "IconPencil2"
16760
+ },
16761
+ {
16762
+ "category": "Edit",
16763
+ "svg": "<path d=\"M15.0294 3.82353L4.27941 14.5735L3.25 20.75L9.42647 19.7206L20.1765 8.97059C21.5978 7.54927 21.5978 5.24485 20.1765 3.82353C18.7552 2.40221 16.4507 2.40221 15.0294 3.82353Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.5 6.5L14.5 9.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>",
16764
+ "iconName": "pencil-3, edit, write, prompt",
16765
+ "variant": {
16766
+ "join": "round",
16767
+ "filled": "off",
16768
+ "radius": "0",
16769
+ "stroke": "1.5"
16770
+ },
16771
+ "createdAt": "2026-02-13T09:00:26.192615+00:00",
16772
+ "packageName": "round-outlined-radius-0-stroke-1.5",
16773
+ "componentName": "IconPencil3"
16774
+ },
16775
+ {
16776
+ "category": "Edit",
16777
+ "svg": "<path d=\"M16.0294 4.82353L5.27941 15.5735L4.25 21.75L10.4265 20.7206L21.1765 9.97059C22.5978 8.54927 22.5978 6.24485 21.1765 4.82353C19.7552 3.40221 17.4507 3.40221 16.0294 4.82353Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15 6L20 11\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M7.24045 4.18518L6.54359 2.37334C6.45708 2.14842 6.24099 2 6 2C5.75901 2 5.54292 2.14842 5.45641 2.37334L4.75955 4.18518C4.65797 4.44927 4.44927 4.65797 4.18518 4.75955L2.37334 5.45641C2.14842 5.54292 2 5.75901 2 6C2 6.24099 2.14842 6.45708 2.37334 6.54359L4.18518 7.24045C4.44927 7.34203 4.65797 7.55073 4.75955 7.81482L5.45641 9.62666C5.54292 9.85158 5.75901 10 6 10C6.24099 10 6.45708 9.85158 6.54359 9.62666L7.24045 7.81482C7.34203 7.55073 7.55073 7.34203 7.81482 7.24045L9.62666 6.54359C9.85158 6.45708 10 6.24099 10 6C10 5.75901 9.85158 5.54292 9.62666 5.45641L7.81482 4.75955C7.55073 4.65797 7.34203 4.44927 7.24045 4.18518Z\" fill=\"currentColor\"/>",
16778
+ "iconName": "pencil-ai, edit, write, auto-write, prompt-suggestion, auto-prompt",
16779
+ "variant": {
16780
+ "join": "round",
16781
+ "filled": "off",
16782
+ "radius": "0",
16783
+ "stroke": "1.5"
16784
+ },
16785
+ "createdAt": "2026-02-13T09:00:26.192615+00:00",
16786
+ "packageName": "round-outlined-radius-0-stroke-1.5",
16787
+ "componentName": "IconPencilAi"
16788
+ },
16747
16789
  {
16748
16790
  "category": "Edit",
16749
16791
  "svg": "<path d=\"M2.75 21.25V17L17 2.75L21.25 7L7 21.25H2.75Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.75 21.25H21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\"/>",
@@ -16814,6 +16856,20 @@
16814
16856
  "packageName": "round-outlined-radius-0-stroke-1.5",
16815
16857
  "componentName": "IconPeople2"
16816
16858
  },
16859
+ {
16860
+ "category": "People",
16861
+ "svg": "<path d=\"M12.75 8.5C12.75 10.5711 11.0711 12.25 9 12.25C6.92893 12.25 5.25 10.5711 5.25 8.5C5.25 6.42893 6.92893 4.75 9 4.75C11.0711 4.75 12.75 6.42893 12.75 8.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.9997 4.75C17.0708 4.75 18.7497 6.42893 18.7497 8.5C18.7497 10.5711 17.0708 12.25 14.9997 12.25C14.975 12.25 14.9504 12.2498 14.9258 12.2493\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2.75 19.25V17.765C2.75 16.0999 4.09315 14.75 5.75 14.75H12C13.6569 14.75 15 16.0999 15 17.765V19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.25 19.25V17.765C21.25 16.0999 19.9069 14.75 18.25 14.75H17.5\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
16862
+ "iconName": "people-2, user, group, friend",
16863
+ "variant": {
16864
+ "join": "round",
16865
+ "filled": "off",
16866
+ "radius": "0",
16867
+ "stroke": "1.5"
16868
+ },
16869
+ "createdAt": "2026-02-13T08:00:42.259331+00:00",
16870
+ "packageName": "round-outlined-radius-0-stroke-1.5",
16871
+ "componentName": "IconPeople21"
16872
+ },
16817
16873
  {
16818
16874
  "category": "People",
16819
16875
  "svg": "<path d=\"M15.75 6.5C15.75 8.57107 14.0711 10.25 12 10.25C9.92893 10.25 8.25 8.57107 8.25 6.5C8.25 4.42893 9.92893 2.75 12 2.75C14.0711 2.75 15.75 4.42893 15.75 6.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.8523 13.2513C7.74082 13.3226 4.86459 16.3717 4.5 20.25H12.5M11.8523 13.2513C11.9014 13.2504 11.9506 13.25 12 13.25C12.3521 13.25 12.6954 13.2717 13.029 13.3138M11.8523 13.2513C11.2023 13.2626 10.5834 13.3483 10.0001 13.5M13.029 13.3138C13.3627 13.3559 13.6867 13.4184 14.0004 13.5M13.029 13.3138C13.7309 13.4024 14.3904 13.5812 15 13.838\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18.25 15.25V18.25M18.25 18.25V21.25M18.25 18.25H15.25M18.25 18.25H21.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
@@ -19236,6 +19292,34 @@
19236
19292
  "packageName": "round-outlined-radius-0-stroke-1.5",
19237
19293
  "componentName": "IconSecretPhrase"
19238
19294
  },
19295
+ {
19296
+ "category": "Edit",
19297
+ "svg": "<path d=\"M12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 4.29167 9.94444 5.31944 8.40278 9.94444\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
19298
+ "iconName": "select-lasso, circle-to-search, encircle, mark",
19299
+ "variant": {
19300
+ "join": "round",
19301
+ "filled": "off",
19302
+ "radius": "0",
19303
+ "stroke": "1.5"
19304
+ },
19305
+ "createdAt": "2026-02-13T09:00:26.192615+00:00",
19306
+ "packageName": "round-outlined-radius-0-stroke-1.5",
19307
+ "componentName": "IconSelectLasso"
19308
+ },
19309
+ {
19310
+ "category": "Edit",
19311
+ "svg": "<path d=\"M12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 4.29167 9.94444 5.31944 8.40278 9.94444\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"4 4\"/>",
19312
+ "iconName": "select-lasso-dashed, circle-to-search-dashed, encircle, mark",
19313
+ "variant": {
19314
+ "join": "round",
19315
+ "filled": "off",
19316
+ "radius": "0",
19317
+ "stroke": "1.5"
19318
+ },
19319
+ "createdAt": "2026-02-13T09:00:26.192615+00:00",
19320
+ "packageName": "round-outlined-radius-0-stroke-1.5",
19321
+ "componentName": "IconSelectLassoDashed"
19322
+ },
19239
19323
  {
19240
19324
  "category": "Location",
19241
19325
  "svg": "<path d=\"M14 22.25L20.5 3.5L1.75 10L11 13L14 22.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
package/icons/index.d.ts CHANGED
@@ -1195,11 +1195,15 @@ export type CentralIconName =
1195
1195
  | "IconPayment"
1196
1196
  | "IconPeace"
1197
1197
  | "IconPencil"
1198
+ | "IconPencil2"
1199
+ | "IconPencil3"
1200
+ | "IconPencilAi"
1198
1201
  | "IconPencilLine"
1199
1202
  | "IconPencilSparkle"
1200
1203
  | "IconPencilWave"
1201
1204
  | "IconPeople"
1202
1205
  | "IconPeople2"
1206
+ | "IconPeople21"
1203
1207
  | "IconPeopleAdd"
1204
1208
  | "IconPeopleAdd2"
1205
1209
  | "IconPeopleAdded"
@@ -1373,6 +1377,8 @@ export type CentralIconName =
1373
1377
  | "IconSearchMenu"
1374
1378
  | "IconSearchOptions"
1375
1379
  | "IconSecretPhrase"
1380
+ | "IconSelectLasso"
1381
+ | "IconSelectLassoDashed"
1376
1382
  | "IconSend"
1377
1383
  | "IconServer"
1378
1384
  | "IconServer1"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-outlined-radius-0-stroke-1.5",
3
- "version": "1.1.124",
3
+ "version": "1.1.126",
4
4
  "style": "round-outlined-radius-0-stroke-1.5",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-0-stroke-1.5/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": 1781,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 67,
@@ -511,7 +511,7 @@
511
511
  ]
512
512
  },
513
513
  "Edit": {
514
- "count": 81,
514
+ "count": 86,
515
515
  "icons": [
516
516
  "Icon3d",
517
517
  "IconAddKeyframe",
@@ -567,6 +567,9 @@
567
567
  "IconPaintBucket",
568
568
  "IconPaintBucketDrop",
569
569
  "IconPencil",
570
+ "IconPencil2",
571
+ "IconPencil3",
572
+ "IconPencilAi",
570
573
  "IconPencilLine",
571
574
  "IconPencilWave",
572
575
  "IconRecKeyframe",
@@ -577,6 +580,8 @@
577
580
  "IconRewrite1",
578
581
  "IconRewrite2",
579
582
  "IconRuler",
583
+ "IconSelectLasso",
584
+ "IconSelectLassoDashed",
580
585
  "IconShaderEffect",
581
586
  "IconShaders",
582
587
  "IconSignature",
@@ -1186,7 +1191,7 @@
1186
1191
  ]
1187
1192
  },
1188
1193
  "People": {
1189
- "count": 52,
1194
+ "count": 53,
1190
1195
  "icons": [
1191
1196
  "IconAura",
1192
1197
  "IconBathMan1",
@@ -1204,6 +1209,7 @@
1204
1209
  "IconHead",
1205
1210
  "IconPeople",
1206
1211
  "IconPeople2",
1212
+ "IconPeople21",
1207
1213
  "IconPeopleAdd",
1208
1214
  "IconPeopleAdd2",
1209
1215
  "IconPeopleAdded",
@@ -3173,11 +3179,15 @@
3173
3179
  "IconPayment": "payment, flow, connection",
3174
3180
  "IconPeace": "peace",
3175
3181
  "IconPencil": "pencil, edit, write",
3182
+ "IconPencil2": "pencil-2, edit, write, prompt",
3183
+ "IconPencil3": "pencil-3, edit, write, prompt",
3184
+ "IconPencilAi": "pencil-ai, edit, write, auto-write, prompt-suggestion, auto-prompt",
3176
3185
  "IconPencilLine": "pencil-line, signature, write",
3177
3186
  "IconPencilSparkle": "pencil-sparkle, magic pencil, magic brush",
3178
3187
  "IconPencilWave": "pencil-wave, signature, write",
3179
3188
  "IconPeople": "people, user, person, avatar",
3180
3189
  "IconPeople2": "people-2",
3190
+ "IconPeople21": "people-2, user, group, friend",
3181
3191
  "IconPeopleAdd": "people-add, user-add",
3182
3192
  "IconPeopleAdd2": "people-add-2",
3183
3193
  "IconPeopleAdded": "people-added, user-added",
@@ -3351,6 +3361,8 @@
3351
3361
  "IconSearchMenu": "search-menu, list-search",
3352
3362
  "IconSearchOptions": "search-options, settings",
3353
3363
  "IconSecretPhrase": "secret-phrase, code, private-phrase",
3364
+ "IconSelectLasso": "select-lasso, circle-to-search, encircle, mark",
3365
+ "IconSelectLassoDashed": "select-lasso-dashed, circle-to-search-dashed, encircle, mark",
3354
3366
  "IconSend": "send, email, paper-plane, arrow",
3355
3367
  "IconServer": "server, data, storage",
3356
3368
  "IconServer1": "server-1, storage, data, coins, money",
package/index.d.ts CHANGED
@@ -1194,11 +1194,15 @@ export { IconPause, default as IconPauseDefault } from "./IconPause";
1194
1194
  export { IconPayment, default as IconPaymentDefault } from "./IconPayment";
1195
1195
  export { IconPeace, default as IconPeaceDefault } from "./IconPeace";
1196
1196
  export { IconPencil, default as IconPencilDefault } from "./IconPencil";
1197
+ export { IconPencil2, default as IconPencil2Default } from "./IconPencil2";
1198
+ export { IconPencil3, default as IconPencil3Default } from "./IconPencil3";
1199
+ export { IconPencilAi, default as IconPencilAiDefault } from "./IconPencilAi";
1197
1200
  export { IconPencilLine, default as IconPencilLineDefault, } from "./IconPencilLine";
1198
1201
  export { IconPencilSparkle, default as IconPencilSparkleDefault, } from "./IconPencilSparkle";
1199
1202
  export { IconPencilWave, default as IconPencilWaveDefault, } from "./IconPencilWave";
1200
1203
  export { IconPeople, default as IconPeopleDefault } from "./IconPeople";
1201
1204
  export { IconPeople2, default as IconPeople2Default } from "./IconPeople2";
1205
+ export { IconPeople21, default as IconPeople21Default } from "./IconPeople21";
1202
1206
  export { IconPeopleAdd, default as IconPeopleAddDefault, } from "./IconPeopleAdd";
1203
1207
  export { IconPeopleAdd2, default as IconPeopleAdd2Default, } from "./IconPeopleAdd2";
1204
1208
  export { IconPeopleAdded, default as IconPeopleAddedDefault, } from "./IconPeopleAdded";
@@ -1372,6 +1376,8 @@ export { IconSearchMenu, default as IconSearchMenuDefault, } from "./IconSearchM
1372
1376
  export { IconSearchOptions, default as IconSearchOptionsDefault, } from "./IconSearchOptions";
1373
1377
  export { IconSearchlinesSparkle, default as IconSearchlinesSparkleDefault, } from "./IconSearchlinesSparkle";
1374
1378
  export { IconSecretPhrase, default as IconSecretPhraseDefault, } from "./IconSecretPhrase";
1379
+ export { IconSelectLasso, default as IconSelectLassoDefault, } from "./IconSelectLasso";
1380
+ export { IconSelectLassoDashed, default as IconSelectLassoDashedDefault, } from "./IconSelectLassoDashed";
1375
1381
  export { IconSend, default as IconSendDefault } from "./IconSend";
1376
1382
  export { IconServer, default as IconServerDefault } from "./IconServer";
1377
1383
  export { IconServer1, default as IconServer1Default } from "./IconServer1";