@central-icons-react-native/round-outlined-radius-2-stroke-2 1.1.172 → 1.1.174
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/IconCanvasGrid/index.d.ts +4 -0
- package/IconCanvasGrid/index.js +2 -0
- package/IconCanvasGrid/index.js.map +1 -0
- package/IconCanvasGrid/index.mjs +2 -0
- package/IconCanvasGrid/index.mjs.map +1 -0
- package/IconCollaborationPointerLeft/index.d.ts +4 -0
- package/IconCollaborationPointerLeft/index.js +2 -0
- package/IconCollaborationPointerLeft/index.js.map +1 -0
- package/IconCollaborationPointerLeft/index.mjs +2 -0
- package/IconCollaborationPointerLeft/index.mjs.map +1 -0
- package/IconCollaborationPointerRight/index.d.ts +4 -0
- package/IconCollaborationPointerRight/index.js +2 -0
- package/IconCollaborationPointerRight/index.js.map +1 -0
- package/IconCollaborationPointerRight/index.mjs +2 -0
- package/IconCollaborationPointerRight/index.mjs.map +1 -0
- package/IconStudioDisplay1/index.d.ts +4 -0
- package/IconStudioDisplay1/index.js +2 -0
- package/IconStudioDisplay1/index.js.map +1 -0
- package/IconStudioDisplay1/index.mjs +2 -0
- package/IconStudioDisplay1/index.mjs.map +1 -0
- package/README.md +4 -0
- package/filtered-icons.json +56 -0
- package/icons/index.d.ts +4 -0
- package/icons-index.json +13 -5
- package/index.d.ts +4 -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 +28 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var m=Object.create;var s=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of f(o))!I.call(r,n)&&n!==e&&s(r,n,{get:()=>o[n],enumerable:!(i=k(o,n))||i.enumerable});return r};var a=(r,o,e)=>(e=r!=null?m(B(r)):{},C(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>C(s({},"__esModule",{value:!0}),r);var P={};h(P,{IconCanvasGrid:()=>l,default:()=>M});module.exports=x(P);var t=a(require("react"));var d=a(require("react")),u=require("react-native-svg"),c=({children:r,size:o=24,...e})=>d.default.createElement(u.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"),l=r=>t.default.createElement(c,{...r},t.default.createElement(p.Path,{d:"M18 4H6C4.89543 4 4 4.89543 4 6V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V6C20 4.89543 19.1046 4 18 4Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M12 4V6M12 20V18M4 12H6M20 12H18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M10 12H14M12 10V14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),M=l;0&&(module.exports={IconCanvasGrid});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCanvasGrid/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 IconCanvasGrid: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18 4H6C4.89543 4 4 4.89543 4 6V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V6C20 4.89543 19.1046 4 18 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 4V6M12 20V18M4 12H6M20 12H18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10 12H14M12 10V14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCanvasGrid;\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,oBAAAE,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,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2HACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconCanvasGrid_exports","__export","IconCanvasGrid","IconCanvasGrid_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCanvasGrid","props","React","CentralIconBase","IconCanvasGrid_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as i}from"react-native-svg";var t=({children:e,size:r=24,...s})=>p.createElement(i,{...s,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 C=e=>o.createElement(t,{...e},o.createElement(n,{d:"M18 4H6C4.89543 4 4 4.89543 4 6V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V6C20 4.89543 19.1046 4 18 4Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M12 4V6M12 20V18M4 12H6M20 12H18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M10 12H14M12 10V14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),I=C;export{C as IconCanvasGrid,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCanvasGrid/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 IconCanvasGrid: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18 4H6C4.89543 4 4 4.89543 4 6V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V6C20 4.89543 19.1046 4 18 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 4V6M12 20V18M4 12H6M20 12H18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10 12H14M12 10V14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCanvasGrid;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2HACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCanvasGrid","props","React","CentralIconBase","IconCanvasGrid_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var L=Object.create;var n=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0})},a=(o,r,t,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of f(r))!B.call(o,e)&&e!==t&&n(o,e,{get:()=>r[e],enumerable:!(C=d(r,e))||C.enumerable});return o};var i=(o,r,t)=>(t=o!=null?L(k(o)):{},a(r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t,o)),P=o=>a(n({},"__esModule",{value:!0}),o);var g={};I(g,{IconCollaborationPointerLeft:()=>u,default:()=>x});module.exports=P(g);var p=i(require("react"));var l=i(require("react")),m=require("react-native-svg"),c=({children:o,size:r=24,...t})=>l.default.createElement(m.Svg,{...t,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"),u=o=>p.default.createElement(c,{...o},p.default.createElement(s.Path,{d:"M13.4472 12.7764L17.761 10.6195C18.9563 10.0219 18.8323 8.27746 17.5645 7.85487L5.84608 3.94871C4.67344 3.55783 3.55783 4.67343 3.94871 5.84607L7.85486 17.5645C8.27746 18.8323 10.0219 18.9563 10.6195 17.761L12.7764 13.4472C12.9216 13.1569 13.1569 12.9216 13.4472 12.7764Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(s.Path,{d:"M21 13.5L16.4472 15.7764C16.1569 15.9215 15.9215 16.1569 15.7764 16.4472L13.5 21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),x=u;0&&(module.exports={IconCollaborationPointerLeft});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCollaborationPointerLeft/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 IconCollaborationPointerLeft: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.4472 12.7764L17.761 10.6195C18.9563 10.0219 18.8323 8.27746 17.5645 7.85487L5.84608 3.94871C4.67344 3.55783 3.55783 4.67343 3.94871 5.84607L7.85486 17.5645C8.27746 18.8323 10.0219 18.9563 10.6195 17.761L12.7764 13.4472C12.9216 13.1569 13.1569 12.9216 13.4472 12.7764Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21 13.5L16.4472 15.7764C16.1569 15.9215 15.9215 16.1569 15.7764 16.4472L13.5 21\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCollaborationPointerLeft;\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,kCAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kRACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mFACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconCollaborationPointerLeft_exports","__export","IconCollaborationPointerLeft","IconCollaborationPointerLeft_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCollaborationPointerLeft","props","React","CentralIconBase","IconCollaborationPointerLeft_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import s from"react";import{Svg as C}from"react-native-svg";var e=({children:r,size:o=24,...p})=>s.createElement(C,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as n}from"react-native-svg";var a=r=>t.createElement(e,{...r},t.createElement(n,{d:"M13.4472 12.7764L17.761 10.6195C18.9563 10.0219 18.8323 8.27746 17.5645 7.85487L5.84608 3.94871C4.67344 3.55783 3.55783 4.67343 3.94871 5.84607L7.85486 17.5645C8.27746 18.8323 10.0219 18.9563 10.6195 17.761L12.7764 13.4472C12.9216 13.1569 13.1569 12.9216 13.4472 12.7764Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement(n,{d:"M21 13.5L16.4472 15.7764C16.1569 15.9215 15.9215 16.1569 15.7764 16.4472L13.5 21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),B=a;export{a as IconCollaborationPointerLeft,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCollaborationPointerLeft/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 IconCollaborationPointerLeft: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.4472 12.7764L17.761 10.6195C18.9563 10.0219 18.8323 8.27746 17.5645 7.85487L5.84608 3.94871C4.67344 3.55783 3.55783 4.67343 3.94871 5.84607L7.85486 17.5645C8.27746 18.8323 10.0219 18.9563 10.6195 17.761L12.7764 13.4472C12.9216 13.1569 13.1569 12.9216 13.4472 12.7764Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M21 13.5L16.4472 15.7764C16.1569 15.9215 15.9215 16.1569 15.7764 16.4472L13.5 21\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCollaborationPointerLeft;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kRACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mFACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCollaborationPointerLeft","props","React","CentralIconBase","IconCollaborationPointerLeft_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var n=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0})},a=(o,r,t,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of f(r))!B.call(o,e)&&e!==t&&n(o,e,{get:()=>r[e],enumerable:!(C=L(r,e))||C.enumerable});return o};var i=(o,r,t)=>(t=o!=null?d(k(o)):{},a(r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t,o)),P=o=>a(n({},"__esModule",{value:!0}),o);var h={};I(h,{IconCollaborationPointerRight:()=>u,default:()=>g});module.exports=P(h);var p=i(require("react"));var l=i(require("react")),m=require("react-native-svg"),c=({children:o,size:r=24,...t})=>l.default.createElement(m.Svg,{...t,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"),u=o=>p.default.createElement(c,{...o},p.default.createElement(s.Path,{d:"M10.5528 12.7764L6.23898 10.6195C5.0437 10.0219 5.16767 8.27746 6.43545 7.85487L18.1539 3.94871C19.3266 3.55783 20.4422 4.67343 20.0513 5.84607L16.1451 17.5645C15.7225 18.8323 13.9781 18.9563 13.3805 17.761L11.2236 13.4472C11.0784 13.1569 10.843 12.9216 10.5528 12.7764Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement(s.Path,{d:"M3 13.5L7.55279 15.7764C7.84308 15.9215 8.07846 16.1569 8.22361 16.4472L10.5 21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),g=u;0&&(module.exports={IconCollaborationPointerRight});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCollaborationPointerRight/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 IconCollaborationPointerRight: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.5528 12.7764L6.23898 10.6195C5.0437 10.0219 5.16767 8.27746 6.43545 7.85487L18.1539 3.94871C19.3266 3.55783 20.4422 4.67343 20.0513 5.84607L16.1451 17.5645C15.7225 18.8323 13.9781 18.9563 13.3805 17.761L11.2236 13.4472C11.0784 13.1569 10.843 12.9216 10.5528 12.7764Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3 13.5L7.55279 15.7764C7.84308 15.9215 8.07846 16.1569 8.22361 16.4472L10.5 21\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCollaborationPointerRight;\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,mCAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iRACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kFACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconCollaborationPointerRight_exports","__export","IconCollaborationPointerRight","IconCollaborationPointerRight_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCollaborationPointerRight","props","React","CentralIconBase","IconCollaborationPointerRight_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import s from"react";import{Svg as C}from"react-native-svg";var e=({children:r,size:o=24,...p})=>s.createElement(C,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as n}from"react-native-svg";var a=r=>t.createElement(e,{...r},t.createElement(n,{d:"M10.5528 12.7764L6.23898 10.6195C5.0437 10.0219 5.16767 8.27746 6.43545 7.85487L18.1539 3.94871C19.3266 3.55783 20.4422 4.67343 20.0513 5.84607L16.1451 17.5645C15.7225 18.8323 13.9781 18.9563 13.3805 17.761L11.2236 13.4472C11.0784 13.1569 10.843 12.9216 10.5528 12.7764Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement(n,{d:"M3 13.5L7.55279 15.7764C7.84308 15.9215 8.07846 16.1569 8.22361 16.4472L10.5 21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),B=a;export{a as IconCollaborationPointerRight,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCollaborationPointerRight/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 IconCollaborationPointerRight: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.5528 12.7764L6.23898 10.6195C5.0437 10.0219 5.16767 8.27746 6.43545 7.85487L18.1539 3.94871C19.3266 3.55783 20.4422 4.67343 20.0513 5.84607L16.1451 17.5645C15.7225 18.8323 13.9781 18.9563 13.3805 17.761L11.2236 13.4472C11.0784 13.1569 10.843 12.9216 10.5528 12.7764Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3 13.5L7.55279 15.7764C7.84308 15.9215 8.07846 16.1569 8.22361 16.4472L10.5 21\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCollaborationPointerRight;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iRACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kFACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCollaborationPointerRight","props","React","CentralIconBase","IconCollaborationPointerRight_default"]}
|
|
@@ -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,k=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0})},a=(o,r,t,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of B(r))!k.call(o,e)&&e!==t&&n(o,e,{get:()=>r[e],enumerable:!(C=f(r,e))||C.enumerable});return o};var i=(o,r,t)=>(t=o!=null?d(I(o)):{},a(r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t,o)),P=o=>a(n({},"__esModule",{value:!0}),o);var h={};x(h,{IconStudioDisplay1:()=>c,default:()=>g});module.exports=P(h);var p=i(require("react"));var l=i(require("react")),m=require("react-native-svg"),u=({children:o,size:r=24,...t})=>l.default.createElement(m.Svg,{...t,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"),c=o=>p.default.createElement(u,{...o},p.default.createElement(s.Path,{d:"M19 4H5C3.89543 4 3 4.89543 3 6V13C3 14.1046 3.89543 15 5 15H19C20.1046 15 21 14.1046 21 13V6C21 4.89543 20.1046 4 19 4Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),p.default.createElement(s.Path,{d:"M9.5 16V20H14.5V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),g=c;0&&(module.exports={IconStudioDisplay1});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStudioDisplay1/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 IconStudioDisplay1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19 4H5C3.89543 4 3 4.89543 3 6V13C3 14.1046 3.89543 15 5 15H19C20.1046 15 21 14.1046 21 13V6C21 4.89543 20.1046 4 19 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 16V20H14.5V16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStudioDisplay1;\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,wBAAAE,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,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2HACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconStudioDisplay1_exports","__export","IconStudioDisplay1","IconStudioDisplay1_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconStudioDisplay1","props","React","CentralIconBase","IconStudioDisplay1_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import s from"react";import{Svg as C}from"react-native-svg";var e=({children:r,size:o=24,...p})=>s.createElement(C,{...p,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as n}from"react-native-svg";var a=r=>t.createElement(e,{...r},t.createElement(n,{d:"M19 4H5C3.89543 4 3 4.89543 3 6V13C3 14.1046 3.89543 15 5 15H19C20.1046 15 21 14.1046 21 13V6C21 4.89543 20.1046 4 19 4Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),t.createElement(n,{d:"M9.5 16V20H14.5V16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),k=a;export{a as IconStudioDisplay1,k as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconStudioDisplay1/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 IconStudioDisplay1: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M19 4H5C3.89543 4 3 4.89543 3 6V13C3 14.1046 3.89543 15 5 15H19C20.1046 15 21 14.1046 21 13V6C21 4.89543 20.1046 4 19 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9.5 16V20H14.5V16\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStudioDisplay1;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2HACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qBACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconStudioDisplay1","props","React","CentralIconBase","IconStudioDisplay1_default"]}
|
package/README.md
CHANGED
|
@@ -332,6 +332,8 @@ Below is a complete list of available icons:
|
|
|
332
332
|
- IconChevronTopSmall
|
|
333
333
|
- IconChevronTriangleDownSmall
|
|
334
334
|
- IconChevronTriangleUpSmall
|
|
335
|
+
- IconCollaborationPointerLeft
|
|
336
|
+
- IconCollaborationPointerRight
|
|
335
337
|
- IconCursor1
|
|
336
338
|
- IconCursor3
|
|
337
339
|
- IconCursorClick
|
|
@@ -635,6 +637,7 @@ Below is a complete list of available icons:
|
|
|
635
637
|
- IconSpeaker
|
|
636
638
|
- IconStorage
|
|
637
639
|
- IconStudioDisplay
|
|
640
|
+
- IconStudioDisplay1
|
|
638
641
|
- IconTablet
|
|
639
642
|
- IconTape
|
|
640
643
|
- IconTape2
|
|
@@ -1230,6 +1233,7 @@ Below is a complete list of available icons:
|
|
|
1230
1233
|
- IconAlignVerticalCenter
|
|
1231
1234
|
- IconBento
|
|
1232
1235
|
- IconBoard
|
|
1236
|
+
- IconCanvasGrid
|
|
1233
1237
|
- IconCarussel
|
|
1234
1238
|
- IconColumns3
|
|
1235
1239
|
- IconColumns3Wide
|
package/filtered-icons.json
CHANGED
|
@@ -5320,6 +5320,20 @@
|
|
|
5320
5320
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
5321
5321
|
"componentName": "IconCandy"
|
|
5322
5322
|
},
|
|
5323
|
+
{
|
|
5324
|
+
"category": "Layout",
|
|
5325
|
+
"svg": "<path d=\"M18 4H6C4.89543 4 4 4.89543 4 6V18C4 19.1046 4.89543 20 6 20H18C19.1046 20 20 19.1046 20 18V6C20 4.89543 19.1046 4 18 4Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 4V6M12 20V18M4 12H6M20 12H18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 12H14M12 10V14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
5326
|
+
"iconName": "canvas-grid, design, app-icon, blueprint",
|
|
5327
|
+
"variant": {
|
|
5328
|
+
"join": "round",
|
|
5329
|
+
"filled": "off",
|
|
5330
|
+
"radius": "2",
|
|
5331
|
+
"stroke": "2"
|
|
5332
|
+
},
|
|
5333
|
+
"createdAt": "2026-03-23T06:00:43.134372+00:00",
|
|
5334
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
5335
|
+
"componentName": "IconCanvasGrid"
|
|
5336
|
+
},
|
|
5323
5337
|
{
|
|
5324
5338
|
"category": "Things",
|
|
5325
5339
|
"svg": "<path d=\"M3 13V18.4292C3 19.161 3.76248 19.646 4.44161 19.3735C9.62724 17.2926 14.3728 17.2926 19.5584 19.3735C20.2375 19.646 21 19.161 21 18.4292V13C21 8.02944 16.9706 4 12 4C7.02944 4 3 8.02944 3 13Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.5 14.7722C9.373 12.1599 14.627 12.1599 20.5 14.7722\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.25 4.5C10.2976 5.68519 8.75 8.94444 8.75 12.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.25 4.5C13.2024 5.68519 14.75 8.94444 14.75 12.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -7588,6 +7602,34 @@
|
|
|
7588
7602
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
7589
7603
|
"componentName": "IconCoinWon"
|
|
7590
7604
|
},
|
|
7605
|
+
{
|
|
7606
|
+
"category": "Arrows",
|
|
7607
|
+
"svg": "<path d=\"M13.4472 12.7764L17.761 10.6195C18.9563 10.0219 18.8323 8.27746 17.5645 7.85487L5.84608 3.94871C4.67344 3.55783 3.55783 4.67343 3.94871 5.84607L7.85486 17.5645C8.27746 18.8323 10.0219 18.9563 10.6195 17.761L12.7764 13.4472C12.9216 13.1569 13.1569 12.9216 13.4472 12.7764Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21 13.5L16.4472 15.7764C16.1569 15.9215 15.9215 16.1569 15.7764 16.4472L13.5 21\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
7608
|
+
"iconName": "collaboration-pointer-left, cursor, agents",
|
|
7609
|
+
"variant": {
|
|
7610
|
+
"join": "round",
|
|
7611
|
+
"filled": "off",
|
|
7612
|
+
"radius": "2",
|
|
7613
|
+
"stroke": "2"
|
|
7614
|
+
},
|
|
7615
|
+
"createdAt": "2026-03-23T06:00:43.134372+00:00",
|
|
7616
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
7617
|
+
"componentName": "IconCollaborationPointerLeft"
|
|
7618
|
+
},
|
|
7619
|
+
{
|
|
7620
|
+
"category": "Arrows",
|
|
7621
|
+
"svg": "<path d=\"M10.5528 12.7764L6.23898 10.6195C5.0437 10.0219 5.16767 8.27746 6.43545 7.85487L18.1539 3.94871C19.3266 3.55783 20.4422 4.67343 20.0513 5.84607L16.1451 17.5645C15.7225 18.8323 13.9781 18.9563 13.3805 17.761L11.2236 13.4472C11.0784 13.1569 10.843 12.9216 10.5528 12.7764Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3 13.5L7.55279 15.7764C7.84308 15.9215 8.07846 16.1569 8.22361 16.4472L10.5 21\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
7622
|
+
"iconName": "collaboration-pointer-right, cursor, agents",
|
|
7623
|
+
"variant": {
|
|
7624
|
+
"join": "round",
|
|
7625
|
+
"filled": "off",
|
|
7626
|
+
"radius": "2",
|
|
7627
|
+
"stroke": "2"
|
|
7628
|
+
},
|
|
7629
|
+
"createdAt": "2026-03-23T06:00:43.134372+00:00",
|
|
7630
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
7631
|
+
"componentName": "IconCollaborationPointerRight"
|
|
7632
|
+
},
|
|
7591
7633
|
{
|
|
7592
7634
|
"category": "Edit",
|
|
7593
7635
|
"svg": "<path d=\"M3 12C3 16.6944 7.02944 20.5 12 20.5C14.8273 20.5 11 18 12 16C13.6125 12.7751 21 18.9062 21 12C21 7.30558 16.9706 3.5 12 3.5C7.02944 3.5 3 7.30558 3 12Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/><path d=\"M7.5 10.75C8.32843 10.75 9 11.4216 9 12.25C9 13.0784 8.32843 13.75 7.5 13.75C6.67157 13.75 6 13.0784 6 12.25C6 11.4216 6.67157 10.75 7.5 10.75Z\" fill=\"currentColor\"/><path d=\"M15.5 8C16.3284 8 17 8.67157 17 9.5C17 10.3284 16.3284 11 15.5 11C14.6716 11 14 10.3284 14 9.5C14 8.67157 14.6716 8 15.5 8Z\" fill=\"currentColor\"/><path d=\"M10.5 6.5C11.3284 6.5 12 7.17157 12 8C12 8.82843 11.3284 9.5 10.5 9.5C9.67157 9.5 9 8.82843 9 8C9 7.17157 9.67157 6.5 10.5 6.5Z\" fill=\"currentColor\"/>",
|
|
@@ -23268,6 +23310,20 @@
|
|
|
23268
23310
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
23269
23311
|
"componentName": "IconStudioDisplay"
|
|
23270
23312
|
},
|
|
23313
|
+
{
|
|
23314
|
+
"category": "Devices & Signals",
|
|
23315
|
+
"svg": "<path d=\"M19 4H5C3.89543 4 3 4.89543 3 6V13C3 14.1046 3.89543 15 5 15H19C20.1046 15 21 14.1046 21 13V6C21 4.89543 20.1046 4 19 4Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M9.5 16V20H14.5V16\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
23316
|
+
"iconName": "studio-display, xdr, imac",
|
|
23317
|
+
"variant": {
|
|
23318
|
+
"join": "round",
|
|
23319
|
+
"filled": "off",
|
|
23320
|
+
"radius": "2",
|
|
23321
|
+
"stroke": "2"
|
|
23322
|
+
},
|
|
23323
|
+
"createdAt": "2026-03-20T12:00:42.750372+00:00",
|
|
23324
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
23325
|
+
"componentName": "IconStudioDisplay1"
|
|
23326
|
+
},
|
|
23271
23327
|
{
|
|
23272
23328
|
"category": "Typography",
|
|
23273
23329
|
"svg": "<path d=\"M21 20H17C17 18.1159 21 16.798 21 14.9309C21 13.7674 20.1098 13 19.0052 13C18.0383 13 17.3801 13.5837 17.1243 14.3478\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3 6L13 18M13 6L3 18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -379,6 +379,7 @@ export type CentralIconName =
|
|
|
379
379
|
| "IconCameraOff1"
|
|
380
380
|
| "IconCameraSparkle"
|
|
381
381
|
| "IconCandy"
|
|
382
|
+
| "IconCanvasGrid"
|
|
382
383
|
| "IconCap"
|
|
383
384
|
| "IconCapture"
|
|
384
385
|
| "IconCar1"
|
|
@@ -541,6 +542,8 @@ export type CentralIconName =
|
|
|
541
542
|
| "IconCoinsAdd"
|
|
542
543
|
| "IconCoinStack"
|
|
543
544
|
| "IconCoinWon"
|
|
545
|
+
| "IconCollaborationPointerLeft"
|
|
546
|
+
| "IconCollaborationPointerRight"
|
|
544
547
|
| "IconColorPalette"
|
|
545
548
|
| "IconColorPicker"
|
|
546
549
|
| "IconColorRoll"
|
|
@@ -1661,6 +1664,7 @@ export type CentralIconName =
|
|
|
1661
1664
|
| "IconStreaming"
|
|
1662
1665
|
| "IconStrikeThrough"
|
|
1663
1666
|
| "IconStudioDisplay"
|
|
1667
|
+
| "IconStudioDisplay1"
|
|
1664
1668
|
| "IconSubscript"
|
|
1665
1669
|
| "IconSubscriptionStar"
|
|
1666
1670
|
| "IconSubscriptionTick1"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-2-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.174",
|
|
4
4
|
"style": "round-outlined-radius-2-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-stroke-2/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1908,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 74,
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
]
|
|
108
108
|
},
|
|
109
109
|
"Arrows": {
|
|
110
|
-
"count":
|
|
110
|
+
"count": 134,
|
|
111
111
|
"icons": [
|
|
112
112
|
"IconArrow",
|
|
113
113
|
"IconArrowBottomTop",
|
|
@@ -206,6 +206,8 @@
|
|
|
206
206
|
"IconChevronTopSmall",
|
|
207
207
|
"IconChevronTriangleDownSmall",
|
|
208
208
|
"IconChevronTriangleUpSmall",
|
|
209
|
+
"IconCollaborationPointerLeft",
|
|
210
|
+
"IconCollaborationPointerRight",
|
|
209
211
|
"IconCursor1",
|
|
210
212
|
"IconCursor3",
|
|
211
213
|
"IconCursorClick",
|
|
@@ -456,7 +458,7 @@
|
|
|
456
458
|
]
|
|
457
459
|
},
|
|
458
460
|
"Devices & Signals": {
|
|
459
|
-
"count":
|
|
461
|
+
"count": 78,
|
|
460
462
|
"icons": [
|
|
461
463
|
"IconAgentNetwork",
|
|
462
464
|
"IconAirdrop",
|
|
@@ -523,6 +525,7 @@
|
|
|
523
525
|
"IconSpeaker",
|
|
524
526
|
"IconStorage",
|
|
525
527
|
"IconStudioDisplay",
|
|
528
|
+
"IconStudioDisplay1",
|
|
526
529
|
"IconTablet",
|
|
527
530
|
"IconTape",
|
|
528
531
|
"IconTape2",
|
|
@@ -1136,12 +1139,13 @@
|
|
|
1136
1139
|
]
|
|
1137
1140
|
},
|
|
1138
1141
|
"Layout": {
|
|
1139
|
-
"count":
|
|
1142
|
+
"count": 53,
|
|
1140
1143
|
"icons": [
|
|
1141
1144
|
"IconAlignHorizontalCenter",
|
|
1142
1145
|
"IconAlignVerticalCenter",
|
|
1143
1146
|
"IconBento",
|
|
1144
1147
|
"IconBoard",
|
|
1148
|
+
"IconCanvasGrid",
|
|
1145
1149
|
"IconCarussel",
|
|
1146
1150
|
"IconColumns3",
|
|
1147
1151
|
"IconColumns3Wide",
|
|
@@ -2486,6 +2490,7 @@
|
|
|
2486
2490
|
"IconCameraOff1": "camera-off-1, cam-off",
|
|
2487
2491
|
"IconCameraSparkle": "camera-sparkle, picture, image, cam",
|
|
2488
2492
|
"IconCandy": "candy, sweet",
|
|
2493
|
+
"IconCanvasGrid": "canvas-grid, design, app-icon, blueprint",
|
|
2489
2494
|
"IconCap": "cap, fan",
|
|
2490
2495
|
"IconCapture": "capture, screen",
|
|
2491
2496
|
"IconCar1": "car-1",
|
|
@@ -2648,6 +2653,8 @@
|
|
|
2648
2653
|
"IconCoinsAdd": "coins-add, money",
|
|
2649
2654
|
"IconCoinStack": "coin-stack, tokens, data, money",
|
|
2650
2655
|
"IconCoinWon": "coin-won, currency, money",
|
|
2656
|
+
"IconCollaborationPointerLeft": "collaboration-pointer-left, cursor, agents",
|
|
2657
|
+
"IconCollaborationPointerRight": "collaboration-pointer-right, cursor, agents",
|
|
2651
2658
|
"IconColorPalette": "color-palette, colours",
|
|
2652
2659
|
"IconColorPicker": "color-picker, color",
|
|
2653
2660
|
"IconColorRoll": "color-roll, paint-roller",
|
|
@@ -3768,6 +3775,7 @@
|
|
|
3768
3775
|
"IconStreaming": "streaming, live, stream",
|
|
3769
3776
|
"IconStrikeThrough": "strike-through",
|
|
3770
3777
|
"IconStudioDisplay": "studio-display, thunderbolt",
|
|
3778
|
+
"IconStudioDisplay1": "studio-display, xdr, imac",
|
|
3771
3779
|
"IconSubscript": "subscript",
|
|
3772
3780
|
"IconSubscriptionStar": "subscription-star, verify",
|
|
3773
3781
|
"IconSubscriptionTick1": "subscription-tick-1, verify",
|
package/index.d.ts
CHANGED
|
@@ -378,6 +378,7 @@ export { IconCameraOff, default as IconCameraOffDefault, } from "./IconCameraOff
|
|
|
378
378
|
export { IconCameraOff1, default as IconCameraOff1Default, } from "./IconCameraOff1";
|
|
379
379
|
export { IconCameraSparkle, default as IconCameraSparkleDefault, } from "./IconCameraSparkle";
|
|
380
380
|
export { IconCandy, default as IconCandyDefault } from "./IconCandy";
|
|
381
|
+
export { IconCanvasGrid, default as IconCanvasGridDefault, } from "./IconCanvasGrid";
|
|
381
382
|
export { IconCap, default as IconCapDefault } from "./IconCap";
|
|
382
383
|
export { IconCapture, default as IconCaptureDefault } from "./IconCapture";
|
|
383
384
|
export { IconCar1, default as IconCar1Default } from "./IconCar1";
|
|
@@ -540,6 +541,8 @@ export { IconCoinStack, default as IconCoinStackDefault, } from "./IconCoinStack
|
|
|
540
541
|
export { IconCoinWon, default as IconCoinWonDefault } from "./IconCoinWon";
|
|
541
542
|
export { IconCoins, default as IconCoinsDefault } from "./IconCoins";
|
|
542
543
|
export { IconCoinsAdd, default as IconCoinsAddDefault } from "./IconCoinsAdd";
|
|
544
|
+
export { IconCollaborationPointerLeft, default as IconCollaborationPointerLeftDefault, } from "./IconCollaborationPointerLeft";
|
|
545
|
+
export { IconCollaborationPointerRight, default as IconCollaborationPointerRightDefault, } from "./IconCollaborationPointerRight";
|
|
543
546
|
export { IconColorPalette, default as IconColorPaletteDefault, } from "./IconColorPalette";
|
|
544
547
|
export { IconColorPicker, default as IconColorPickerDefault, } from "./IconColorPicker";
|
|
545
548
|
export { IconColorRoll, default as IconColorRollDefault, } from "./IconColorRoll";
|
|
@@ -1660,6 +1663,7 @@ export { IconStrawberry, default as IconStrawberryDefault, } from "./IconStrawbe
|
|
|
1660
1663
|
export { IconStreaming, default as IconStreamingDefault, } from "./IconStreaming";
|
|
1661
1664
|
export { IconStrikeThrough, default as IconStrikeThroughDefault, } from "./IconStrikeThrough";
|
|
1662
1665
|
export { IconStudioDisplay, default as IconStudioDisplayDefault, } from "./IconStudioDisplay";
|
|
1666
|
+
export { IconStudioDisplay1, default as IconStudioDisplay1Default, } from "./IconStudioDisplay1";
|
|
1663
1667
|
export { IconSubscript, default as IconSubscriptDefault, } from "./IconSubscript";
|
|
1664
1668
|
export { IconSubscriptionStar, default as IconSubscriptionStarDefault, } from "./IconSubscriptionStar";
|
|
1665
1669
|
export { IconSubscriptionTick1, default as IconSubscriptionTick1Default, } from "./IconSubscriptionTick1";
|