@central-icons-react-native/round-filled-radius-0-stroke-1 1.1.173 → 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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconCanvasGrid: FC<CentralIconBaseProps>;
4
+ export default IconCanvasGrid;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of u(o))!v.call(r,C)&&C!==e&&n(r,C,{get:()=>o[C],enumerable:!(p=i(o,C))||p.enumerable});return r};var a=(r,o,e)=>(e=r!=null?f(d(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>l(n({},"__esModule",{value:!0}),r);var P={};B(P,{IconCanvasGrid:()=>c,default:()=>x});module.exports=I(P);var t=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),H=({children:r,size:o=24,...e})=>m.default.createElement(s.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 V=require("react-native-svg"),c=r=>t.default.createElement(H,{...r},t.default.createElement(V.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M11.5 5.5C11.5 5.77614 11.7239 6 12 6C12.2761 6 12.5 5.77614 12.5 5.5V3H20.5C20.7761 3 21 3.22386 21 3.5V11.5H18.5C18.2239 11.5 18 11.7239 18 12C18 12.2761 18.2239 12.5 18.5 12.5H21V20.5C21 20.7761 20.7761 21 20.5 21H12.5V18.5C12.5 18.2239 12.2761 18 12 18C11.7239 18 11.5 18.2239 11.5 18.5V21H3.5C3.22386 21 3 20.7761 3 20.5V12.5H5.5C5.77614 12.5 6 12.2761 6 12C6 11.7239 5.77614 11.5 5.5 11.5H3V3.5C3 3.22386 3.22386 3 3.5 3H11.5V5.5ZM12 9C11.7239 9 11.5 9.22386 11.5 9.5V11.5H9.5C9.22386 11.5 9 11.7239 9 12C9 12.2761 9.22386 12.5 9.5 12.5H11.5V14.5C11.5 14.7761 11.7239 15 12 15C12.2761 15 12.5 14.7761 12.5 14.5V12.5H14.5C14.7761 12.5 15 12.2761 15 12C15 11.7239 14.7761 11.5 14.5 11.5H12.5V9.5C12.5 9.22386 12.2761 9 12 9Z",fill:"currentColor"})),x=c;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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M11.5 5.5C11.5 5.77614 11.7239 6 12 6C12.2761 6 12.5 5.77614 12.5 5.5V3H20.5C20.7761 3 21 3.22386 21 3.5V11.5H18.5C18.2239 11.5 18 11.7239 18 12C18 12.2761 18.2239 12.5 18.5 12.5H21V20.5C21 20.7761 20.7761 21 20.5 21H12.5V18.5C12.5 18.2239 12.2761 18 12 18C11.7239 18 11.5 18.2239 11.5 18.5V21H3.5C3.22386 21 3 20.7761 3 20.5V12.5H5.5C5.77614 12.5 6 12.2761 6 12C6 11.7239 5.77614 11.5 5.5 11.5H3V3.5C3 3.22386 3.22386 3 3.5 3H11.5V5.5ZM12 9C11.7239 9 11.5 9.22386 11.5 9.5V11.5H9.5C9.22386 11.5 9 11.7239 9 12C9 12.2761 9.22386 12.5 9.5 12.5H11.5V14.5C11.5 14.7761 11.7239 15 12 15C12.2761 15 12.5 14.7761 12.5 14.5V12.5H14.5C14.7761 12.5 15 12.2761 15 12C15 11.7239 14.7761 11.5 14.5 11.5H12.5V9.5C12.5 9.22386 12.2761 9 12 9Z\"\n fill=\"currentColor\"\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,SAAS,UACT,SAAS,UACT,EAAE,2tBACF,KAAK,eACP,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 C from"react";import t from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...n})=>t.createElement(p,{...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 l}from"react-native-svg";var a=o=>C.createElement(e,{...o},C.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M11.5 5.5C11.5 5.77614 11.7239 6 12 6C12.2761 6 12.5 5.77614 12.5 5.5V3H20.5C20.7761 3 21 3.22386 21 3.5V11.5H18.5C18.2239 11.5 18 11.7239 18 12C18 12.2761 18.2239 12.5 18.5 12.5H21V20.5C21 20.7761 20.7761 21 20.5 21H12.5V18.5C12.5 18.2239 12.2761 18 12 18C11.7239 18 11.5 18.2239 11.5 18.5V21H3.5C3.22386 21 3 20.7761 3 20.5V12.5H5.5C5.77614 12.5 6 12.2761 6 12C6 11.7239 5.77614 11.5 5.5 11.5H3V3.5C3 3.22386 3.22386 3 3.5 3H11.5V5.5ZM12 9C11.7239 9 11.5 9.22386 11.5 9.5V11.5H9.5C9.22386 11.5 9 11.7239 9 12C9 12.2761 9.22386 12.5 9.5 12.5H11.5V14.5C11.5 14.7761 11.7239 15 12 15C12.2761 15 12.5 14.7761 12.5 14.5V12.5H14.5C14.7761 12.5 15 12.2761 15 12C15 11.7239 14.7761 11.5 14.5 11.5H12.5V9.5C12.5 9.22386 12.2761 9 12 9Z",fill:"currentColor"})),v=a;export{a as IconCanvasGrid,v 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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M11.5 5.5C11.5 5.77614 11.7239 6 12 6C12.2761 6 12.5 5.77614 12.5 5.5V3H20.5C20.7761 3 21 3.22386 21 3.5V11.5H18.5C18.2239 11.5 18 11.7239 18 12C18 12.2761 18.2239 12.5 18.5 12.5H21V20.5C21 20.7761 20.7761 21 20.5 21H12.5V18.5C12.5 18.2239 12.2761 18 12 18C11.7239 18 11.5 18.2239 11.5 18.5V21H3.5C3.22386 21 3 20.7761 3 20.5V12.5H5.5C5.77614 12.5 6 12.2761 6 12C6 11.7239 5.77614 11.5 5.5 11.5H3V3.5C3 3.22386 3.22386 3 3.5 3H11.5V5.5ZM12 9C11.7239 9 11.5 9.22386 11.5 9.5V11.5H9.5C9.22386 11.5 9 11.7239 9 12C9 12.2761 9.22386 12.5 9.5 12.5H11.5V14.5C11.5 14.7761 11.7239 15 12 15C12.2761 15 12.5 14.7761 12.5 14.5V12.5H14.5C14.7761 12.5 15 12.2761 15 12C15 11.7239 14.7761 11.5 14.5 11.5H12.5V9.5C12.5 9.22386 12.2761 9 12 9Z\"\n fill=\"currentColor\"\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,SAAS,UACT,SAAS,UACT,EAAE,2tBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCanvasGrid","props","React","CentralIconBase","IconCanvasGrid_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconCollaborationPointerLeft: FC<CentralIconBaseProps>;
4
+ export default IconCollaborationPointerLeft;
@@ -0,0 +1,2 @@
1
+ "use strict";var L=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(l=u(o,e))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?L(I(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var b={};x(b,{IconCollaborationPointerLeft:()=>i,default:()=>v});module.exports=g(b);var C=m(require("react"));var f=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>f.default.createElement(s.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),i=r=>C.default.createElement(c,{...r},C.default.createElement(p.Path,{d:"M20.9641 13.3147C20.8615 13.0585 20.5709 12.934 20.3147 13.0363L15.3147 15.0354C15.1877 15.0861 15.0872 15.1877 15.0363 15.3147L13.0363 20.3147C12.9338 20.5711 13.0583 20.8615 13.3147 20.9641C13.571 21.0666 13.8615 20.9421 13.9641 20.6858L15.885 15.884L20.6858 13.9641C20.942 13.8614 21.0666 13.571 20.9641 13.3147Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M4.64962 4.02267C4.47219 3.96722 4.2782 4.01534 4.14669 4.14669C4.01522 4.27817 3.96727 4.47214 4.02267 4.64962L9.02267 20.6496C9.08641 20.8534 9.27313 20.9942 9.48653 21.0002C9.69969 21.006 9.89297 20.8756 9.96798 20.676L12.8889 12.8879L20.676 9.96798C20.8755 9.89288 21.006 9.69968 21.0002 9.48654C20.9941 9.27327 20.8532 9.08642 20.6496 9.02267L4.64962 4.02267Z",fill:"currentColor"})),v=i;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=\"M20.9641 13.3147C20.8615 13.0585 20.5709 12.934 20.3147 13.0363L15.3147 15.0354C15.1877 15.0861 15.0872 15.1877 15.0363 15.3147L13.0363 20.3147C12.9338 20.5711 13.0583 20.8615 13.3147 20.9641C13.571 21.0666 13.8615 20.9421 13.9641 20.6858L15.885 15.884L20.6858 13.9641C20.942 13.8614 21.0666 13.571 20.9641 13.3147Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.64962 4.02267C4.47219 3.96722 4.2782 4.01534 4.14669 4.14669C4.01522 4.27817 3.96727 4.47214 4.02267 4.64962L9.02267 20.6496C9.08641 20.8534 9.27313 20.9942 9.48653 21.0002C9.69969 21.006 9.89297 20.8756 9.96798 20.676L12.8889 12.8879L20.676 9.96798C20.8755 9.89288 21.006 9.69968 21.0002 9.48654C20.9941 9.27327 20.8532 9.08642 20.6496 9.02267L4.64962 4.02267Z\"\n fill=\"currentColor\"\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,8TACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+WACF,KAAK,eACP,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 p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...C})=>p.createElement(l,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(n,{d:"M20.9641 13.3147C20.8615 13.0585 20.5709 12.934 20.3147 13.0363L15.3147 15.0354C15.1877 15.0861 15.0872 15.1877 15.0363 15.3147L13.0363 20.3147C12.9338 20.5711 13.0583 20.8615 13.3147 20.9641C13.571 21.0666 13.8615 20.9421 13.9641 20.6858L15.885 15.884L20.6858 13.9641C20.942 13.8614 21.0666 13.571 20.9641 13.3147Z",fill:"currentColor"}),t.createElement(n,{d:"M4.64962 4.02267C4.47219 3.96722 4.2782 4.01534 4.14669 4.14669C4.01522 4.27817 3.96727 4.47214 4.02267 4.64962L9.02267 20.6496C9.08641 20.8534 9.27313 20.9942 9.48653 21.0002C9.69969 21.006 9.89297 20.8756 9.96798 20.676L12.8889 12.8879L20.676 9.96798C20.8755 9.89288 21.006 9.69968 21.0002 9.48654C20.9941 9.27327 20.8532 9.08642 20.6496 9.02267L4.64962 4.02267Z",fill:"currentColor"})),P=a;export{a as IconCollaborationPointerLeft,P 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=\"M20.9641 13.3147C20.8615 13.0585 20.5709 12.934 20.3147 13.0363L15.3147 15.0354C15.1877 15.0861 15.0872 15.1877 15.0363 15.3147L13.0363 20.3147C12.9338 20.5711 13.0583 20.8615 13.3147 20.9641C13.571 21.0666 13.8615 20.9421 13.9641 20.6858L15.885 15.884L20.6858 13.9641C20.942 13.8614 21.0666 13.571 20.9641 13.3147Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M4.64962 4.02267C4.47219 3.96722 4.2782 4.01534 4.14669 4.14669C4.01522 4.27817 3.96727 4.47214 4.02267 4.64962L9.02267 20.6496C9.08641 20.8534 9.27313 20.9942 9.48653 21.0002C9.69969 21.006 9.89297 20.8756 9.96798 20.676L12.8889 12.8879L20.676 9.96798C20.8755 9.89288 21.006 9.69968 21.0002 9.48654C20.9941 9.27327 20.8532 9.08642 20.6496 9.02267L4.64962 4.02267Z\"\n fill=\"currentColor\"\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,8TACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+WACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCollaborationPointerLeft","props","React","CentralIconBase","IconCollaborationPointerLeft_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconCollaborationPointerRight: FC<CentralIconBaseProps>;
4
+ export default IconCollaborationPointerRight;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var e=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)e(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of I(o))!P.call(r,n)&&n!==t&&e(r,n,{get:()=>o[n],enumerable:!(l=B(o,n))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(L(r)):{},a(o||!r||!r.__esModule?e(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>a(e({},"__esModule",{value:!0}),r);var v={};g(v,{IconCollaborationPointerRight:()=>c,default:()=>h});module.exports=x(v);var C=m(require("react"));var s=m(require("react")),f=require("react-native-svg"),i=({children:r,size:o=24,...t})=>s.default.createElement(f.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),c=r=>C.default.createElement(i,{...r},C.default.createElement(p.Path,{d:"M3.03583 13.3147C3.13841 13.0585 3.42897 12.934 3.68525 13.0363L8.68525 15.0354C8.81221 15.0861 8.91271 15.1877 8.96357 15.3147L10.9636 20.3147C11.0661 20.5711 10.9416 20.8615 10.6852 20.9641C10.4289 21.0666 10.1384 20.9421 10.0358 20.6858L8.11493 15.884L3.31415 13.9641C3.05794 13.8614 2.93332 13.571 3.03583 13.3147Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M19.3503 4.02267C19.5277 3.96722 19.7217 4.01534 19.8532 4.14669C19.9847 4.27817 20.0326 4.47214 19.9772 4.64962L14.9772 20.6496C14.9135 20.8534 14.7268 20.9942 14.5134 21.0002C14.3002 21.006 14.1069 20.8756 14.0319 20.676L11.111 12.8879L3.32392 9.96798C3.12438 9.89288 2.99387 9.69968 2.9997 9.48654C3.00576 9.27327 3.14668 9.08642 3.35029 9.02267L19.3503 4.02267Z",fill:"currentColor"})),h=c;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=\"M3.03583 13.3147C3.13841 13.0585 3.42897 12.934 3.68525 13.0363L8.68525 15.0354C8.81221 15.0861 8.91271 15.1877 8.96357 15.3147L10.9636 20.3147C11.0661 20.5711 10.9416 20.8615 10.6852 20.9641C10.4289 21.0666 10.1384 20.9421 10.0358 20.6858L8.11493 15.884L3.31415 13.9641C3.05794 13.8614 2.93332 13.571 3.03583 13.3147Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.3503 4.02267C19.5277 3.96722 19.7217 4.01534 19.8532 4.14669C19.9847 4.27817 20.0326 4.47214 19.9772 4.64962L14.9772 20.6496C14.9135 20.8534 14.7268 20.9942 14.5134 21.0002C14.3002 21.006 14.1069 20.8756 14.0319 20.676L11.111 12.8879L3.32392 9.96798C3.12438 9.89288 2.99387 9.69968 2.9997 9.48654C3.00576 9.27327 3.14668 9.08642 3.35029 9.02267L19.3503 4.02267Z\"\n fill=\"currentColor\"\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,iUACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gXACF,KAAK,eACP,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 p from"react";import{Svg as l}from"react-native-svg";var n=({children:o,size:r=24,...C})=>p.createElement(l,{...C,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 e}from"react-native-svg";var a=o=>t.createElement(n,{...o},t.createElement(e,{d:"M3.03583 13.3147C3.13841 13.0585 3.42897 12.934 3.68525 13.0363L8.68525 15.0354C8.81221 15.0861 8.91271 15.1877 8.96357 15.3147L10.9636 20.3147C11.0661 20.5711 10.9416 20.8615 10.6852 20.9641C10.4289 21.0666 10.1384 20.9421 10.0358 20.6858L8.11493 15.884L3.31415 13.9641C3.05794 13.8614 2.93332 13.571 3.03583 13.3147Z",fill:"currentColor"}),t.createElement(e,{d:"M19.3503 4.02267C19.5277 3.96722 19.7217 4.01534 19.8532 4.14669C19.9847 4.27817 20.0326 4.47214 19.9772 4.64962L14.9772 20.6496C14.9135 20.8534 14.7268 20.9942 14.5134 21.0002C14.3002 21.006 14.1069 20.8756 14.0319 20.676L11.111 12.8879L3.32392 9.96798C3.12438 9.89288 2.99387 9.69968 2.9997 9.48654C3.00576 9.27327 3.14668 9.08642 3.35029 9.02267L19.3503 4.02267Z",fill:"currentColor"})),P=a;export{a as IconCollaborationPointerRight,P 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=\"M3.03583 13.3147C3.13841 13.0585 3.42897 12.934 3.68525 13.0363L8.68525 15.0354C8.81221 15.0861 8.91271 15.1877 8.96357 15.3147L10.9636 20.3147C11.0661 20.5711 10.9416 20.8615 10.6852 20.9641C10.4289 21.0666 10.1384 20.9421 10.0358 20.6858L8.11493 15.884L3.31415 13.9641C3.05794 13.8614 2.93332 13.571 3.03583 13.3147Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19.3503 4.02267C19.5277 3.96722 19.7217 4.01534 19.8532 4.14669C19.9847 4.27817 20.0326 4.47214 19.9772 4.64962L14.9772 20.6496C14.9135 20.8534 14.7268 20.9942 14.5134 21.0002C14.3002 21.006 14.1069 20.8756 14.0319 20.676L11.111 12.8879L3.32392 9.96798C3.12438 9.89288 2.99387 9.69968 2.9997 9.48654C3.00576 9.27327 3.14668 9.08642 3.35029 9.02267L19.3503 4.02267Z\"\n fill=\"currentColor\"\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,iUACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gXACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCollaborationPointerRight","props","React","CentralIconBase","IconCollaborationPointerRight_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
@@ -1231,6 +1233,7 @@ Below is a complete list of available icons:
1231
1233
  - IconAlignVerticalCenter
1232
1234
  - IconBento
1233
1235
  - IconBoard
1236
+ - IconCanvasGrid
1234
1237
  - IconCarussel
1235
1238
  - IconColumns3
1236
1239
  - IconColumns3Wide
@@ -5320,6 +5320,20 @@
5320
5320
  "packageName": "round-filled-radius-0-stroke-1",
5321
5321
  "componentName": "IconCandy"
5322
5322
  },
5323
+ {
5324
+ "category": "Layout",
5325
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.5 5.5C11.5 5.77614 11.7239 6 12 6C12.2761 6 12.5 5.77614 12.5 5.5V3H20.5C20.7761 3 21 3.22386 21 3.5V11.5H18.5C18.2239 11.5 18 11.7239 18 12C18 12.2761 18.2239 12.5 18.5 12.5H21V20.5C21 20.7761 20.7761 21 20.5 21H12.5V18.5C12.5 18.2239 12.2761 18 12 18C11.7239 18 11.5 18.2239 11.5 18.5V21H3.5C3.22386 21 3 20.7761 3 20.5V12.5H5.5C5.77614 12.5 6 12.2761 6 12C6 11.7239 5.77614 11.5 5.5 11.5H3V3.5C3 3.22386 3.22386 3 3.5 3H11.5V5.5ZM12 9C11.7239 9 11.5 9.22386 11.5 9.5V11.5H9.5C9.22386 11.5 9 11.7239 9 12C9 12.2761 9.22386 12.5 9.5 12.5H11.5V14.5C11.5 14.7761 11.7239 15 12 15C12.2761 15 12.5 14.7761 12.5 14.5V12.5H14.5C14.7761 12.5 15 12.2761 15 12C15 11.7239 14.7761 11.5 14.5 11.5H12.5V9.5C12.5 9.22386 12.2761 9 12 9Z\" fill=\"currentColor\"/>",
5326
+ "iconName": "canvas-grid, design, app-icon, blueprint",
5327
+ "variant": {
5328
+ "join": "round",
5329
+ "filled": "on",
5330
+ "radius": "0",
5331
+ "stroke": "1"
5332
+ },
5333
+ "createdAt": "2026-03-23T06:00:43.134372+00:00",
5334
+ "packageName": "round-filled-radius-0-stroke-1",
5335
+ "componentName": "IconCanvasGrid"
5336
+ },
5323
5337
  {
5324
5338
  "category": "Things",
5325
5339
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.6756 4.06513C6.35332 4.59614 3 8.30971 3 12.8191V14.2903C4.70574 13.5432 6.36377 13.0012 8.0003 12.6645C8.02438 9.24384 9.48621 5.91659 10.6756 4.06513ZM11.9374 4L11.9005 4.04932C10.7803 5.54828 9.08611 8.97397 9.00317 12.4834C11.0092 12.1722 12.9908 12.1722 14.9968 12.4834C14.9139 8.97396 13.2197 5.54828 12.0995 4.04932L12.0626 4H11.9374ZM13.3244 4.06513C14.5138 5.91659 15.9756 9.24384 15.9997 12.6645C17.6362 13.0012 19.2943 13.5432 21 14.2903V12.8191C21 8.30971 17.6467 4.59614 13.3244 4.06513ZM2 12.8191C2 7.40003 6.35835 3 11.7432 3H12.2568C17.6416 3 22 7.40003 22 12.8191V18.4408C22 19.5701 20.8429 20.2904 19.8326 19.8859C14.5586 17.7748 9.44135 17.7748 4.16737 19.8859C3.15706 20.2904 2 19.5701 2 18.4408V12.8191Z\" fill=\"currentColor\"/>",
@@ -7588,6 +7602,34 @@
7588
7602
  "packageName": "round-filled-radius-0-stroke-1",
7589
7603
  "componentName": "IconCoinWon"
7590
7604
  },
7605
+ {
7606
+ "category": "Arrows",
7607
+ "svg": "<path d=\"M20.9641 13.3147C20.8615 13.0585 20.5709 12.934 20.3147 13.0363L15.3147 15.0354C15.1877 15.0861 15.0872 15.1877 15.0363 15.3147L13.0363 20.3147C12.9338 20.5711 13.0583 20.8615 13.3147 20.9641C13.571 21.0666 13.8615 20.9421 13.9641 20.6858L15.885 15.884L20.6858 13.9641C20.942 13.8614 21.0666 13.571 20.9641 13.3147Z\" fill=\"currentColor\"/><path d=\"M4.64962 4.02267C4.47219 3.96722 4.2782 4.01534 4.14669 4.14669C4.01522 4.27817 3.96727 4.47214 4.02267 4.64962L9.02267 20.6496C9.08641 20.8534 9.27313 20.9942 9.48653 21.0002C9.69969 21.006 9.89297 20.8756 9.96798 20.676L12.8889 12.8879L20.676 9.96798C20.8755 9.89288 21.006 9.69968 21.0002 9.48654C20.9941 9.27327 20.8532 9.08642 20.6496 9.02267L4.64962 4.02267Z\" fill=\"currentColor\"/>",
7608
+ "iconName": "collaboration-pointer-left, cursor, agents",
7609
+ "variant": {
7610
+ "join": "round",
7611
+ "filled": "on",
7612
+ "radius": "0",
7613
+ "stroke": "1"
7614
+ },
7615
+ "createdAt": "2026-03-23T06:00:43.134372+00:00",
7616
+ "packageName": "round-filled-radius-0-stroke-1",
7617
+ "componentName": "IconCollaborationPointerLeft"
7618
+ },
7619
+ {
7620
+ "category": "Arrows",
7621
+ "svg": "<path d=\"M3.03583 13.3147C3.13841 13.0585 3.42897 12.934 3.68525 13.0363L8.68525 15.0354C8.81221 15.0861 8.91271 15.1877 8.96357 15.3147L10.9636 20.3147C11.0661 20.5711 10.9416 20.8615 10.6852 20.9641C10.4289 21.0666 10.1384 20.9421 10.0358 20.6858L8.11493 15.884L3.31415 13.9641C3.05794 13.8614 2.93332 13.571 3.03583 13.3147Z\" fill=\"currentColor\"/><path d=\"M19.3503 4.02267C19.5277 3.96722 19.7217 4.01534 19.8532 4.14669C19.9847 4.27817 20.0326 4.47214 19.9772 4.64962L14.9772 20.6496C14.9135 20.8534 14.7268 20.9942 14.5134 21.0002C14.3002 21.006 14.1069 20.8756 14.0319 20.676L11.111 12.8879L3.32392 9.96798C3.12438 9.89288 2.99387 9.69968 2.9997 9.48654C3.00576 9.27327 3.14668 9.08642 3.35029 9.02267L19.3503 4.02267Z\" fill=\"currentColor\"/>",
7622
+ "iconName": "collaboration-pointer-right, cursor, agents",
7623
+ "variant": {
7624
+ "join": "round",
7625
+ "filled": "on",
7626
+ "radius": "0",
7627
+ "stroke": "1"
7628
+ },
7629
+ "createdAt": "2026-03-23T06:00:43.134372+00:00",
7630
+ "packageName": "round-filled-radius-0-stroke-1",
7631
+ "componentName": "IconCollaborationPointerRight"
7632
+ },
7591
7633
  {
7592
7634
  "category": "Edit",
7593
7635
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 12C2 6.72817 6.50297 2.5 12 2.5C17.497 2.5 22 6.72817 22 12C22 13.9015 21.4916 15.0839 20.5198 15.6907C19.5969 16.2669 18.4033 16.216 17.3236 16.0752C16.9499 16.0264 16.5635 15.9624 16.1897 15.9004C16.0148 15.8715 15.8427 15.8429 15.676 15.8167C15.1398 15.7322 14.6429 15.6678 14.1951 15.6613C13.2979 15.6482 12.7446 15.8624 12.4475 16.4583C12.2667 16.8211 12.2862 17.2321 12.4483 17.7137C12.5894 18.1332 12.815 18.542 13.0428 18.955C13.0827 19.0273 13.1227 19.0998 13.1623 19.1725C13.2887 19.4044 13.4151 19.6464 13.5011 19.8745C13.5831 20.0923 13.658 20.3714 13.6005 20.6533C13.5333 20.9825 13.3103 21.2122 13.0117 21.3412C12.7413 21.458 12.3971 21.5 12 21.5C6.50297 21.5 2 17.2718 2 12ZM10.25 9C10.9404 9 11.5 8.44036 11.5 7.75C11.5 7.05964 10.9404 6.5 10.25 6.5C9.55964 6.5 9 7.05964 9 7.75C9 8.44036 9.55964 9 10.25 9ZM8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12ZM15.25 10.5C15.9404 10.5 16.5 9.94036 16.5 9.25C16.5 8.55964 15.9404 8 15.25 8C14.5596 8 14 8.55964 14 9.25C14 9.94036 14.5596 10.5 15.25 10.5Z\" fill=\"currentColor\"/>",
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"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-filled-radius-0-stroke-1",
3
- "version": "1.1.173",
3
+ "version": "1.1.174",
4
4
  "style": "round-filled-radius-0-stroke-1",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-0-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": 1905,
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": 132,
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",
@@ -1137,12 +1139,13 @@
1137
1139
  ]
1138
1140
  },
1139
1141
  "Layout": {
1140
- "count": 52,
1142
+ "count": 53,
1141
1143
  "icons": [
1142
1144
  "IconAlignHorizontalCenter",
1143
1145
  "IconAlignVerticalCenter",
1144
1146
  "IconBento",
1145
1147
  "IconBoard",
1148
+ "IconCanvasGrid",
1146
1149
  "IconCarussel",
1147
1150
  "IconColumns3",
1148
1151
  "IconColumns3Wide",
@@ -2487,6 +2490,7 @@
2487
2490
  "IconCameraOff1": "camera-off-1, cam-off",
2488
2491
  "IconCameraSparkle": "camera-sparkle, picture, image, cam",
2489
2492
  "IconCandy": "candy, sweet",
2493
+ "IconCanvasGrid": "canvas-grid, design, app-icon, blueprint",
2490
2494
  "IconCap": "cap, fan",
2491
2495
  "IconCapture": "capture, screen",
2492
2496
  "IconCar1": "car-1",
@@ -2649,6 +2653,8 @@
2649
2653
  "IconCoinsAdd": "coins-add, money",
2650
2654
  "IconCoinStack": "coin-stack, tokens, data, money",
2651
2655
  "IconCoinWon": "coin-won, currency, money",
2656
+ "IconCollaborationPointerLeft": "collaboration-pointer-left, cursor, agents",
2657
+ "IconCollaborationPointerRight": "collaboration-pointer-right, cursor, agents",
2652
2658
  "IconColorPalette": "color-palette, colours",
2653
2659
  "IconColorPicker": "color-picker, color",
2654
2660
  "IconColorRoll": "color-roll, paint-roller",
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";