@central-icons-react-native/round-outlined-radius-2-stroke-1 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.
- package/IconPencil2/index.d.ts +4 -0
- package/IconPencil2/index.js +2 -0
- package/IconPencil2/index.js.map +1 -0
- package/IconPencil2/index.mjs +2 -0
- package/IconPencil2/index.mjs.map +1 -0
- package/IconPencil3/index.d.ts +4 -0
- package/IconPencil3/index.js +2 -0
- package/IconPencil3/index.js.map +1 -0
- package/IconPencil3/index.mjs +2 -0
- package/IconPencil3/index.mjs.map +1 -0
- package/IconPencilAi/index.d.ts +4 -0
- package/IconPencilAi/index.js +2 -0
- package/IconPencilAi/index.js.map +1 -0
- package/IconPencilAi/index.mjs +2 -0
- package/IconPencilAi/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/IconSelectLasso/index.d.ts +4 -0
- package/IconSelectLasso/index.js +2 -0
- package/IconSelectLasso/index.js.map +1 -0
- package/IconSelectLasso/index.mjs +2 -0
- package/IconSelectLasso/index.mjs.map +1 -0
- package/IconSelectLassoDashed/index.d.ts +4 -0
- package/IconSelectLassoDashed/index.js +2 -0
- package/IconSelectLassoDashed/index.js.map +1 -0
- package/IconSelectLassoDashed/index.mjs +2 -0
- package/IconSelectLassoDashed/index.mjs.map +1 -0
- package/README.md +6 -0
- package/filtered-icons.json +84 -0
- package/icons/index.d.ts +6 -0
- package/icons-index.json +16 -4
- package/index.d.ts +6 -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 +42 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var L=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!x.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(s=B(o,n))||s.enumerable});return r};var l=(r,o,e)=>(e=r!=null?f(P(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>a(t({},"__esModule",{value:!0}),r);var v={};L(v,{IconPencil2:()=>u,default:()=>g});module.exports=d(v);var p=l(require("react"));var m=l(require("react")),c=require("react-native-svg"),i=({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 C=require("react-native-svg"),u=r=>p.default.createElement(i,{...r},p.default.createElement(C.Path,{d:"M15.5 3.5L4.45321 14.5468C4.15845 14.8415 3.96316 15.221 3.89463 15.6322L3 21L8.36779 20.1054C8.77896 20.0368 9.15845 19.8415 9.45321 19.5468L20.5 8.5C21.8807 7.11929 21.8807 4.88071 20.5 3.5C19.1193 2.11929 16.8807 2.11929 15.5 3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(C.Path,{d:"M14.5 5L19 9.5",stroke:"currentColor"})),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.5 3.5L4.45321 14.5468C4.15845 14.8415 3.96316 15.221 3.89463 15.6322L3 21L8.36779 20.1054C8.77896 20.0368 9.15845 19.8415 9.45321 19.5468L20.5 8.5C21.8807 7.11929 21.8807 4.88071 20.5 3.5C19.1193 2.11929 16.8807 2.11929 15.5 3.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path d=\"M14.5 5L19 9.5\" stroke=\"currentColor\" />\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,4OACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,CACjD,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 e from"react";import C from"react";import{Svg as s}from"react-native-svg";var n=({children:o,size:r=24,...p})=>C.createElement(s,{...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 t}from"react-native-svg";var a=o=>e.createElement(n,{...o},e.createElement(t,{d:"M15.5 3.5L4.45321 14.5468C4.15845 14.8415 3.96316 15.221 3.89463 15.6322L3 21L8.36779 20.1054C8.77896 20.0368 9.15845 19.8415 9.45321 19.5468L20.5 8.5C21.8807 7.11929 21.8807 4.88071 20.5 3.5C19.1193 2.11929 16.8807 2.11929 15.5 3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M14.5 5L19 9.5",stroke:"currentColor"})),x=a;export{a as IconPencil2,x 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.5 3.5L4.45321 14.5468C4.15845 14.8415 3.96316 15.221 3.89463 15.6322L3 21L8.36779 20.1054C8.77896 20.0368 9.15845 19.8415 9.45321 19.5468L20.5 8.5C21.8807 7.11929 21.8807 4.88071 20.5 3.5C19.1193 2.11929 16.8807 2.11929 15.5 3.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path d=\"M14.5 5L19 9.5\" stroke=\"currentColor\" />\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,4OACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,CACjD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPencil2","props","React","CentralIconBase","IconPencil2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!P.call(r,n)&&n!==e&&t(r,n,{get:()=>o[n],enumerable:!(C=B(o,n))||C.enumerable});return r};var c=(r,o,e)=>(e=r!=null?f(L(r)):{},a(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>a(t({},"__esModule",{value:!0}),r);var k={};d(k,{IconPencil3:()=>u,default:()=>g});module.exports=x(k);var p=c(require("react"));var l=c(require("react")),m=require("react-native-svg"),i=({children:r,size:o=24,...e})=>l.default.createElement(m.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(i,{...r},p.default.createElement(s.Path,{d:"M15.5 3.5L4.45321 14.5468C4.15845 14.8415 3.96316 15.221 3.89463 15.6322L3 21L8.36779 20.1054C8.77896 20.0368 9.15845 19.8415 9.45321 19.5468L20.5 8.5C21.8807 7.11929 21.8807 4.88071 20.5 3.5C19.1193 2.11929 16.8807 2.11929 15.5 3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(s.Path,{d:"M18 6L14.5 9.5",stroke:"currentColor",strokeLinecap:"round"})),g=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.5 3.5L4.45321 14.5468C4.15845 14.8415 3.96316 15.221 3.89463 15.6322L3 21L8.36779 20.1054C8.77896 20.0368 9.15845 19.8415 9.45321 19.5468L20.5 8.5C21.8807 7.11929 21.8807 4.88071 20.5 3.5C19.1193 2.11929 16.8807 2.11929 15.5 3.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path d=\"M18 6L14.5 9.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\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,4OACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,CACvE,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 C}from"react-native-svg";var n=({children:o,size:r=24,...p})=>s.createElement(C,{...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 t}from"react-native-svg";var a=o=>e.createElement(n,{...o},e.createElement(t,{d:"M15.5 3.5L4.45321 14.5468C4.15845 14.8415 3.96316 15.221 3.89463 15.6322L3 21L8.36779 20.1054C8.77896 20.0368 9.15845 19.8415 9.45321 19.5468L20.5 8.5C21.8807 7.11929 21.8807 4.88071 20.5 3.5C19.1193 2.11929 16.8807 2.11929 15.5 3.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M18 6L14.5 9.5",stroke:"currentColor",strokeLinecap:"round"})),P=a;export{a as IconPencil3,P 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.5 3.5L4.45321 14.5468C4.15845 14.8415 3.96316 15.221 3.89463 15.6322L3 21L8.36779 20.1054C8.77896 20.0368 9.15845 19.8415 9.45321 19.5468L20.5 8.5C21.8807 7.11929 21.8807 4.88071 20.5 3.5C19.1193 2.11929 16.8807 2.11929 15.5 3.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path d=\"M18 6L14.5 9.5\" stroke=\"currentColor\" strokeLinecap=\"round\" />\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,4OACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,CACvE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPencil3","props","React","CentralIconBase","IconPencil3_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var C=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},L=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!P.call(r,n)&&n!==e&&C(r,n,{get:()=>o[n],enumerable:!(s=f(o,n))||s.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(I(r)):{},L(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>L(C({},"__esModule",{value:!0}),r);var k={};d(k,{IconPencilAi:()=>i,default:()=>g});module.exports=x(k);var t=a(require("react"));var l=a(require("react")),m=require("react-native-svg"),c=({children:r,size:o=24,...e})=>l.default.createElement(m.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),i=r=>t.default.createElement(c,{...r},t.default.createElement(p.Path,{d:"M16.5 4.5L5.45321 15.5468C5.15845 15.8415 4.96316 16.221 4.89463 16.6322L4 22L9.36779 21.1054C9.77896 21.0368 10.1585 20.8415 10.4532 20.5468L21.5 9.5C22.8807 8.11929 22.8807 5.88071 21.5 4.5C20.1193 3.11929 17.8807 3.11929 16.5 4.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M15.5 6L20 10.5",stroke:"currentColor"}),t.default.createElement(p.Path,{d:"M7.06545 4.36018L6.47564 2.82667C6.39995 2.62986 6.21086 2.5 6 2.5C5.78914 2.5 5.60005 2.62986 5.52436 2.82667L4.93455 4.36018C4.83297 4.62427 4.62427 4.83297 4.36018 4.93455L2.82667 5.52436C2.62986 5.60005 2.5 5.78914 2.5 6C2.5 6.21086 2.62986 6.39995 2.82667 6.47564L4.36018 7.06545C4.62427 7.16703 4.83297 7.37573 4.93455 7.63982L5.52436 9.17333C5.60005 9.37014 5.78914 9.5 6 9.5C6.21086 9.5 6.39995 9.37014 6.47564 9.17333L7.06545 7.63982C7.16703 7.37573 7.37573 7.16703 7.63982 7.06545L9.17333 6.47564C9.37014 6.39995 9.5 6.21086 9.5 6C9.5 5.78914 9.37014 5.60005 9.17333 5.52436L7.63982 4.93455C7.37573 4.83297 7.16703 4.62427 7.06545 4.36018Z",stroke:"currentColor"})),g=i;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.5 4.5L5.45321 15.5468C5.15845 15.8415 4.96316 16.221 4.89463 16.6322L4 22L9.36779 21.1054C9.77896 21.0368 10.1585 20.8415 10.4532 20.5468L21.5 9.5C22.8807 8.11929 22.8807 5.88071 21.5 4.5C20.1193 3.11929 17.8807 3.11929 16.5 4.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path d=\"M15.5 6L20 10.5\" stroke=\"currentColor\" />\n <Path\n d=\"M7.06545 4.36018L6.47564 2.82667C6.39995 2.62986 6.21086 2.5 6 2.5C5.78914 2.5 5.60005 2.62986 5.52436 2.82667L4.93455 4.36018C4.83297 4.62427 4.62427 4.83297 4.36018 4.93455L2.82667 5.52436C2.62986 5.60005 2.5 5.78914 2.5 6C2.5 6.21086 2.62986 6.39995 2.82667 6.47564L4.36018 7.06545C4.62427 7.16703 4.83297 7.37573 4.93455 7.63982L5.52436 9.17333C5.60005 9.37014 5.78914 9.5 6 9.5C6.21086 9.5 6.39995 9.37014 6.47564 9.17333L7.06545 7.63982C7.16703 7.37573 7.37573 7.16703 7.63982 7.06545L9.17333 6.47564C9.37014 6.39995 9.5 6.21086 9.5 6C9.5 5.78914 9.37014 5.60005 9.17333 5.52436L7.63982 4.93455C7.37573 4.83297 7.16703 4.62427 7.06545 4.36018Z\"\n stroke=\"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,4OACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,kBAAkB,OAAO,eAAe,EAChD,EAAAA,QAAA,cAAC,QACC,EAAE,4oBACF,OAAO,eACT,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 t=({children:e,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"},e);import{Path as n}from"react-native-svg";var L=e=>o.createElement(t,{...e},o.createElement(n,{d:"M16.5 4.5L5.45321 15.5468C5.15845 15.8415 4.96316 16.221 4.89463 16.6322L4 22L9.36779 21.1054C9.77896 21.0368 10.1585 20.8415 10.4532 20.5468L21.5 9.5C22.8807 8.11929 22.8807 5.88071 21.5 4.5C20.1193 3.11929 17.8807 3.11929 16.5 4.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M15.5 6L20 10.5",stroke:"currentColor"}),o.createElement(n,{d:"M7.06545 4.36018L6.47564 2.82667C6.39995 2.62986 6.21086 2.5 6 2.5C5.78914 2.5 5.60005 2.62986 5.52436 2.82667L4.93455 4.36018C4.83297 4.62427 4.62427 4.83297 4.36018 4.93455L2.82667 5.52436C2.62986 5.60005 2.5 5.78914 2.5 6C2.5 6.21086 2.62986 6.39995 2.82667 6.47564L4.36018 7.06545C4.62427 7.16703 4.83297 7.37573 4.93455 7.63982L5.52436 9.17333C5.60005 9.37014 5.78914 9.5 6 9.5C6.21086 9.5 6.39995 9.37014 6.47564 9.17333L7.06545 7.63982C7.16703 7.37573 7.37573 7.16703 7.63982 7.06545L9.17333 6.47564C9.37014 6.39995 9.5 6.21086 9.5 6C9.5 5.78914 9.37014 5.60005 9.17333 5.52436L7.63982 4.93455C7.37573 4.83297 7.16703 4.62427 7.06545 4.36018Z",stroke:"currentColor"})),P=L;export{L as IconPencilAi,P 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.5 4.5L5.45321 15.5468C5.15845 15.8415 4.96316 16.221 4.89463 16.6322L4 22L9.36779 21.1054C9.77896 21.0368 10.1585 20.8415 10.4532 20.5468L21.5 9.5C22.8807 8.11929 22.8807 5.88071 21.5 4.5C20.1193 3.11929 17.8807 3.11929 16.5 4.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path d=\"M15.5 6L20 10.5\" stroke=\"currentColor\" />\n <Path\n d=\"M7.06545 4.36018L6.47564 2.82667C6.39995 2.62986 6.21086 2.5 6 2.5C5.78914 2.5 5.60005 2.62986 5.52436 2.82667L4.93455 4.36018C4.83297 4.62427 4.62427 4.83297 4.36018 4.93455L2.82667 5.52436C2.62986 5.60005 2.5 5.78914 2.5 6C2.5 6.21086 2.62986 6.39995 2.82667 6.47564L4.36018 7.06545C4.62427 7.16703 4.83297 7.37573 4.93455 7.63982L5.52436 9.17333C5.60005 9.37014 5.78914 9.5 6 9.5C6.21086 9.5 6.39995 9.37014 6.47564 9.17333L7.06545 7.63982C7.16703 7.37573 7.37573 7.16703 7.63982 7.06545L9.17333 6.47564C9.37014 6.39995 9.5 6.21086 9.5 6C9.5 5.78914 9.37014 5.60005 9.17333 5.52436L7.63982 4.93455C7.37573 4.83297 7.16703 4.62427 7.06545 4.36018Z\"\n stroke=\"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,4OACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,kBAAkB,OAAO,eAAe,EAChDG,EAAA,cAACH,EAAA,CACC,EAAE,4oBACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPencilAi","props","React","CentralIconBase","IconPencilAi_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"]}
|
|
@@ -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 g=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},s=(o,r,e,a)=>{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:!(a=B(r,t))||a.enumerable});return o};var C=(o,r,e)=>(e=o!=null?u(x(o)):{},s(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),d=o=>s(n({},"__esModule",{value:!0}),o);var S={};g(S,{IconSelectLasso:()=>i,default:()=>v});module.exports=d(S);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 f=require("react-native-svg"),i=o=>p.default.createElement(l,{...o},p.default.createElement(f.Path,{d:"M12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 4.08333 9.88889 5.13889 8.30556 9.88889",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),v=i;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.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 4.08333 9.88889 5.13889 8.30556 9.88889\"\n stroke=\"currentColor\"\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,yJACF,OAAO,eACP,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 a}from"react-native-svg";var e=({children:r,size:o=24,...n})=>p.createElement(a,{...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 s}from"react-native-svg";var C=r=>t.createElement(e,{...r},t.createElement(s,{d:"M12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 4.08333 9.88889 5.13889 8.30556 9.88889",stroke:"currentColor",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.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 4.08333 9.88889 5.13889 8.30556 9.88889\"\n stroke=\"currentColor\"\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,yJACF,OAAO,eACP,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,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=(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))!P.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(x(r)):{},s(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>s(n({},"__esModule",{value:!0}),r);var v={};d(v,{IconSelectLassoDashed:()=>i,default:()=>h});module.exports=g(v);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 f=require("react-native-svg"),i=r=>p.default.createElement(l,{...r},p.default.createElement(f.Path,{d:"M12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 4.08333 9.88889 5.13889 8.30556 9.88889",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeDasharray:"2.5 2.5"})),h=i;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.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 4.08333 9.88889 5.13889 8.30556 9.88889\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeDasharray=\"2.5 2.5\"\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,yJACF,OAAO,eACP,cAAc,QACd,eAAe,QACf,gBAAgB,UAClB,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.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 4.08333 9.88889 5.13889 8.30556 9.88889",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeDasharray:"2.5 2.5"})),P=C;export{C as IconSelectLassoDashed,P 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.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 4.08333 9.88889 5.13889 8.30556 9.88889\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeDasharray=\"2.5 2.5\"\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,yJACF,OAAO,eACP,cAAc,QACd,eAAe,QACf,gBAAgB,UAClB,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
|
package/filtered-icons.json
CHANGED
|
@@ -16744,6 +16744,48 @@
|
|
|
16744
16744
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
16745
16745
|
"componentName": "IconPencil"
|
|
16746
16746
|
},
|
|
16747
|
+
{
|
|
16748
|
+
"category": "Edit",
|
|
16749
|
+
"svg": "<path d=\"M15.5 3.5L4.45321 14.5468C4.15845 14.8415 3.96316 15.221 3.89463 15.6322L3 21L8.36779 20.1054C8.77896 20.0368 9.15845 19.8415 9.45321 19.5468L20.5 8.5C21.8807 7.11929 21.8807 4.88071 20.5 3.5C19.1193 2.11929 16.8807 2.11929 15.5 3.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.5 5L19 9.5\" stroke=\"currentColor\"/>",
|
|
16750
|
+
"iconName": "pencil-2, edit, write, prompt",
|
|
16751
|
+
"variant": {
|
|
16752
|
+
"join": "round",
|
|
16753
|
+
"filled": "off",
|
|
16754
|
+
"radius": "2",
|
|
16755
|
+
"stroke": "1"
|
|
16756
|
+
},
|
|
16757
|
+
"createdAt": "2026-02-13T09:00:26.192615+00:00",
|
|
16758
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
16759
|
+
"componentName": "IconPencil2"
|
|
16760
|
+
},
|
|
16761
|
+
{
|
|
16762
|
+
"category": "Edit",
|
|
16763
|
+
"svg": "<path d=\"M15.5 3.5L4.45321 14.5468C4.15845 14.8415 3.96316 15.221 3.89463 15.6322L3 21L8.36779 20.1054C8.77896 20.0368 9.15845 19.8415 9.45321 19.5468L20.5 8.5C21.8807 7.11929 21.8807 4.88071 20.5 3.5C19.1193 2.11929 16.8807 2.11929 15.5 3.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M18 6L14.5 9.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
|
|
16764
|
+
"iconName": "pencil-3, edit, write, prompt",
|
|
16765
|
+
"variant": {
|
|
16766
|
+
"join": "round",
|
|
16767
|
+
"filled": "off",
|
|
16768
|
+
"radius": "2",
|
|
16769
|
+
"stroke": "1"
|
|
16770
|
+
},
|
|
16771
|
+
"createdAt": "2026-02-13T09:00:26.192615+00:00",
|
|
16772
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
16773
|
+
"componentName": "IconPencil3"
|
|
16774
|
+
},
|
|
16775
|
+
{
|
|
16776
|
+
"category": "Edit",
|
|
16777
|
+
"svg": "<path d=\"M16.5 4.5L5.45321 15.5468C5.15845 15.8415 4.96316 16.221 4.89463 16.6322L4 22L9.36779 21.1054C9.77896 21.0368 10.1585 20.8415 10.4532 20.5468L21.5 9.5C22.8807 8.11929 22.8807 5.88071 21.5 4.5C20.1193 3.11929 17.8807 3.11929 16.5 4.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.5 6L20 10.5\" stroke=\"currentColor\"/><path d=\"M7.06545 4.36018L6.47564 2.82667C6.39995 2.62986 6.21086 2.5 6 2.5C5.78914 2.5 5.60005 2.62986 5.52436 2.82667L4.93455 4.36018C4.83297 4.62427 4.62427 4.83297 4.36018 4.93455L2.82667 5.52436C2.62986 5.60005 2.5 5.78914 2.5 6C2.5 6.21086 2.62986 6.39995 2.82667 6.47564L4.36018 7.06545C4.62427 7.16703 4.83297 7.37573 4.93455 7.63982L5.52436 9.17333C5.60005 9.37014 5.78914 9.5 6 9.5C6.21086 9.5 6.39995 9.37014 6.47564 9.17333L7.06545 7.63982C7.16703 7.37573 7.37573 7.16703 7.63982 7.06545L9.17333 6.47564C9.37014 6.39995 9.5 6.21086 9.5 6C9.5 5.78914 9.37014 5.60005 9.17333 5.52436L7.63982 4.93455C7.37573 4.83297 7.16703 4.62427 7.06545 4.36018Z\" stroke=\"currentColor\"/>",
|
|
16778
|
+
"iconName": "pencil-ai, edit, write, auto-write, prompt-suggestion, auto-prompt",
|
|
16779
|
+
"variant": {
|
|
16780
|
+
"join": "round",
|
|
16781
|
+
"filled": "off",
|
|
16782
|
+
"radius": "2",
|
|
16783
|
+
"stroke": "1"
|
|
16784
|
+
},
|
|
16785
|
+
"createdAt": "2026-02-13T09:00:26.192615+00:00",
|
|
16786
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
16787
|
+
"componentName": "IconPencilAi"
|
|
16788
|
+
},
|
|
16747
16789
|
{
|
|
16748
16790
|
"category": "Edit",
|
|
16749
16791
|
"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\"/>",
|
|
@@ -16814,6 +16856,20 @@
|
|
|
16814
16856
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
16815
16857
|
"componentName": "IconPeople2"
|
|
16816
16858
|
},
|
|
16859
|
+
{
|
|
16860
|
+
"category": "People",
|
|
16861
|
+
"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\"/>",
|
|
16862
|
+
"iconName": "people-2, user, group, friend",
|
|
16863
|
+
"variant": {
|
|
16864
|
+
"join": "round",
|
|
16865
|
+
"filled": "off",
|
|
16866
|
+
"radius": "2",
|
|
16867
|
+
"stroke": "1"
|
|
16868
|
+
},
|
|
16869
|
+
"createdAt": "2026-02-13T08:00:42.259331+00:00",
|
|
16870
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
16871
|
+
"componentName": "IconPeople21"
|
|
16872
|
+
},
|
|
16817
16873
|
{
|
|
16818
16874
|
"category": "People",
|
|
16819
16875
|
"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\"/>",
|
|
@@ -19236,6 +19292,34 @@
|
|
|
19236
19292
|
"packageName": "round-outlined-radius-2-stroke-1",
|
|
19237
19293
|
"componentName": "IconSecretPhrase"
|
|
19238
19294
|
},
|
|
19295
|
+
{
|
|
19296
|
+
"category": "Edit",
|
|
19297
|
+
"svg": "<path d=\"M12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 4.08333 9.88889 5.13889 8.30556 9.88889\" stroke=\"currentColor\" 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": "2",
|
|
19303
|
+
"stroke": "1"
|
|
19304
|
+
},
|
|
19305
|
+
"createdAt": "2026-02-13T09:00:26.192615+00:00",
|
|
19306
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
19307
|
+
"componentName": "IconSelectLasso"
|
|
19308
|
+
},
|
|
19309
|
+
{
|
|
19310
|
+
"category": "Edit",
|
|
19311
|
+
"svg": "<path d=\"M12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 4.08333 9.88889 5.13889 8.30556 9.88889\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"2.5 2.5\"/>",
|
|
19312
|
+
"iconName": "select-lasso-dashed, circle-to-search-dashed, encircle, mark",
|
|
19313
|
+
"variant": {
|
|
19314
|
+
"join": "round",
|
|
19315
|
+
"filled": "off",
|
|
19316
|
+
"radius": "2",
|
|
19317
|
+
"stroke": "1"
|
|
19318
|
+
},
|
|
19319
|
+
"createdAt": "2026-02-13T09:00:26.192615+00:00",
|
|
19320
|
+
"packageName": "round-outlined-radius-2-stroke-1",
|
|
19321
|
+
"componentName": "IconSelectLassoDashed"
|
|
19322
|
+
},
|
|
19239
19323
|
{
|
|
19240
19324
|
"category": "Location",
|
|
19241
19325
|
"svg": "<path d=\"M13.16 21.8199C13.3998 22.7992 14.7739 22.8483 15.0831 21.8887L20.6517 4.60682C20.9016 3.83126 20.1688 3.09841 19.3932 3.34832L2.11131 8.91693C1.15169 9.22614 1.20087 10.6002 2.18013 10.84L10.4109 12.8557C10.7729 12.9444 11.0556 13.2271 11.1443 13.5892L13.16 21.8199Z\" stroke=\"currentColor\" 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-2-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.126",
|
|
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": 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":
|
|
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":
|
|
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";
|