@central-icons-react-native/square-filled-radius-0-stroke-1.5 1.0.3 → 1.0.5
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/IconCursorAi/index.d.ts +4 -0
- package/IconCursorAi/index.js +2 -0
- package/IconCursorAi/index.js.map +1 -0
- package/IconCursorAi/index.mjs +2 -0
- package/IconCursorAi/index.mjs.map +1 -0
- package/IconDispersion/index.d.ts +4 -0
- package/IconDispersion/index.js +2 -0
- package/IconDispersion/index.js.map +1 -0
- package/IconDispersion/index.mjs +2 -0
- package/IconDispersion/index.mjs.map +1 -0
- package/IconMarkup/index.d.ts +4 -0
- package/IconMarkup/index.js +2 -0
- package/IconMarkup/index.js.map +1 -0
- package/IconMarkup/index.mjs +2 -0
- package/IconMarkup/index.mjs.map +1 -0
- package/README.md +3 -0
- package/filtered-icons.json +44 -2
- package/icons/index.d.ts +3 -0
- package/icons-index.json +12 -6
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +23 -2
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(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))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(l=L(o,e))||l.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(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 d={};P(d,{IconCursorAi:()=>i,default:()=>v});module.exports=g(d);var C=m(require("react"));var s=m(require("react")),f=require("react-native-svg"),c=({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"),i=r=>C.default.createElement(c,{...r},C.default.createElement(p.Path,{d:"M7.12402 4.32812L7.75 4.56934V7.44727L8.72852 7.66504C9.98867 7.94507 10.4001 8.15399 10.623 8.37695C10.846 8.59992 11.0549 9.01133 11.335 10.2715L11.5527 11.25H14.4473L14.665 10.2715C14.9451 9.01133 15.154 8.59992 15.377 8.37695C15.5336 8.22029 15.7837 8.07175 16.3555 7.89941L22.8359 10.4062L14.5811 14.6113L9.8418 22.7646L2.4668 2.41016L7.12402 4.32812Z",fill:"currentColor"}),C.default.createElement(p.Path,{d:"M13.4444 2H12.5556C12 4.5 11.5 5 9 5.55556V6.44444C11.5 7 12 7.5 12.5556 10H13.4444C14 7.5 14.5 7 17 6.44444V5.55556C14.5 5 14 4.5 13.4444 2Z",fill:"currentColor"})),v=i;0&&(module.exports={IconCursorAi});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCursorAi/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 IconCursorAi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.12402 4.32812L7.75 4.56934V7.44727L8.72852 7.66504C9.98867 7.94507 10.4001 8.15399 10.623 8.37695C10.846 8.59992 11.0549 9.01133 11.335 10.2715L11.5527 11.25H14.4473L14.665 10.2715C14.9451 9.01133 15.154 8.59992 15.377 8.37695C15.5336 8.22029 15.7837 8.07175 16.3555 7.89941L22.8359 10.4062L14.5811 14.6113L9.8418 22.7646L2.4668 2.41016L7.12402 4.32812Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.4444 2H12.5556C12 4.5 11.5 5 9 5.55556V6.44444C11.5 7 12 7.5 12.5556 10H13.4444C14 7.5 14.5 7 17 6.44444V5.55556C14.5 5 14 4.5 13.4444 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCursorAi;\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,uWACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCursorAi_exports","__export","IconCursorAi","IconCursorAi_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCursorAi","props","React","CentralIconBase","IconCursorAi_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:"M7.12402 4.32812L7.75 4.56934V7.44727L8.72852 7.66504C9.98867 7.94507 10.4001 8.15399 10.623 8.37695C10.846 8.59992 11.0549 9.01133 11.335 10.2715L11.5527 11.25H14.4473L14.665 10.2715C14.9451 9.01133 15.154 8.59992 15.377 8.37695C15.5336 8.22029 15.7837 8.07175 16.3555 7.89941L22.8359 10.4062L14.5811 14.6113L9.8418 22.7646L2.4668 2.41016L7.12402 4.32812Z",fill:"currentColor"}),t.createElement(n,{d:"M13.4444 2H12.5556C12 4.5 11.5 5 9 5.55556V6.44444C11.5 7 12 7.5 12.5556 10H13.4444C14 7.5 14.5 7 17 6.44444V5.55556C14.5 5 14 4.5 13.4444 2Z",fill:"currentColor"})),x=a;export{a as IconCursorAi,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCursorAi/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 IconCursorAi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M7.12402 4.32812L7.75 4.56934V7.44727L8.72852 7.66504C9.98867 7.94507 10.4001 8.15399 10.623 8.37695C10.846 8.59992 11.0549 9.01133 11.335 10.2715L11.5527 11.25H14.4473L14.665 10.2715C14.9451 9.01133 15.154 8.59992 15.377 8.37695C15.5336 8.22029 15.7837 8.07175 16.3555 7.89941L22.8359 10.4062L14.5811 14.6113L9.8418 22.7646L2.4668 2.41016L7.12402 4.32812Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13.4444 2H12.5556C12 4.5 11.5 5 9 5.55556V6.44444C11.5 7 12 7.5 12.5556 10H13.4444C14 7.5 14.5 7 17 6.44444V5.55556C14.5 5 14 4.5 13.4444 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCursorAi;\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,uWACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gJACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCursorAi","props","React","CentralIconBase","IconCursorAi_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var H=Object.create;var p=Object.defineProperty;var V=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0})},f=(r,o,n,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of a(o))!B.call(r,e)&&e!==n&&p(r,e,{get:()=>o[e],enumerable:!(C=V(o,e))||C.enumerable});return r};var i=(r,o,n)=>(n=r!=null?H(d(r)):{},f(o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n,r)),L=r=>f(p({},"__esModule",{value:!0}),r);var M={};I(M,{IconDispersion:()=>c,default:()=>x});module.exports=L(M);var l=i(require("react"));var s=i(require("react")),m=require("react-native-svg"),u=({children:r,size:o=24,...n})=>s.default.createElement(m.Svg,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),c=r=>l.default.createElement(u,{...r},l.default.createElement(t.Path,{d:"M21.3037 20.126L20.374 21.3037L14.4463 16.624L15.376 15.4463L21.3037 20.126Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M12.75 21H11.25V3H12.75V21Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M9 16.5H2V15H9V16.5Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M9 12.75H2V11.25H9V12.75Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M22 12.75H15V11.25H22V12.75Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M21.3037 3.87402L15.376 8.55371L14.4463 7.37598L20.374 2.69629L21.3037 3.87402Z",fill:"currentColor"}),l.default.createElement(t.Path,{d:"M9 8.5H2V7H9V8.5Z",fill:"currentColor"})),x=c;0&&(module.exports={IconDispersion});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDispersion/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 IconDispersion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.3037 20.126L20.374 21.3037L14.4463 16.624L15.376 15.4463L21.3037 20.126Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M12.75 21H11.25V3H12.75V21Z\" fill=\"currentColor\" />\n <Path d=\"M9 16.5H2V15H9V16.5Z\" fill=\"currentColor\" />\n <Path d=\"M9 12.75H2V11.25H9V12.75Z\" fill=\"currentColor\" />\n <Path d=\"M22 12.75H15V11.25H22V12.75Z\" fill=\"currentColor\" />\n <Path\n d=\"M21.3037 3.87402L15.376 8.55371L14.4463 7.37598L20.374 2.69629L21.3037 3.87402Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M9 8.5H2V7H9V8.5Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconDispersion;\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,+EACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,8BAA8B,KAAK,eAAe,EAC1D,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,KAAK,eAAe,EACnD,EAAAA,QAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxD,EAAAA,QAAA,cAAC,QAAK,EAAE,+BAA+B,KAAK,eAAe,EAC3D,EAAAA,QAAA,cAAC,QACC,EAAE,kFACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,CAClD,EAIGE,EAAQJ","names":["IconDispersion_exports","__export","IconDispersion","IconDispersion_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDispersion","props","React","CentralIconBase","IconDispersion_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({children:l,size:n=24,...e})=>p.createElement(C,{...e,width:typeof n=="number"?`${n}px`:n,height:typeof n=="number"?`${n}px`:n,viewBox:"0 0 24 24",fill:"none"},l);import{Path as o}from"react-native-svg";var f=l=>r.createElement(t,{...l},r.createElement(o,{d:"M21.3037 20.126L20.374 21.3037L14.4463 16.624L15.376 15.4463L21.3037 20.126Z",fill:"currentColor"}),r.createElement(o,{d:"M12.75 21H11.25V3H12.75V21Z",fill:"currentColor"}),r.createElement(o,{d:"M9 16.5H2V15H9V16.5Z",fill:"currentColor"}),r.createElement(o,{d:"M9 12.75H2V11.25H9V12.75Z",fill:"currentColor"}),r.createElement(o,{d:"M22 12.75H15V11.25H22V12.75Z",fill:"currentColor"}),r.createElement(o,{d:"M21.3037 3.87402L15.376 8.55371L14.4463 7.37598L20.374 2.69629L21.3037 3.87402Z",fill:"currentColor"}),r.createElement(o,{d:"M9 8.5H2V7H9V8.5Z",fill:"currentColor"})),B=f;export{f as IconDispersion,B as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDispersion/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 IconDispersion: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M21.3037 20.126L20.374 21.3037L14.4463 16.624L15.376 15.4463L21.3037 20.126Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M12.75 21H11.25V3H12.75V21Z\" fill=\"currentColor\" />\n <Path d=\"M9 16.5H2V15H9V16.5Z\" fill=\"currentColor\" />\n <Path d=\"M9 12.75H2V11.25H9V12.75Z\" fill=\"currentColor\" />\n <Path d=\"M22 12.75H15V11.25H22V12.75Z\" fill=\"currentColor\" />\n <Path\n d=\"M21.3037 3.87402L15.376 8.55371L14.4463 7.37598L20.374 2.69629L21.3037 3.87402Z\"\n fill=\"currentColor\"\n />\n <Path d=\"M9 8.5H2V7H9V8.5Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconDispersion;\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,+EACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,8BAA8B,KAAK,eAAe,EAC1DG,EAAA,cAACH,EAAA,CAAK,EAAE,uBAAuB,KAAK,eAAe,EACnDG,EAAA,cAACH,EAAA,CAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDG,EAAA,cAACH,EAAA,CAAK,EAAE,+BAA+B,KAAK,eAAe,EAC3DG,EAAA,cAACH,EAAA,CACC,EAAE,kFACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,oBAAoB,KAAK,eAAe,CAClD,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDispersion","props","React","CentralIconBase","IconDispersion_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of i(o))!L.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(a=I(o,e))||a.enumerable});return r};var m=(r,o,t)=>(t=r!=null?B(x(r)):{},l(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>l(n({},"__esModule",{value:!0}),r);var h={};P(h,{IconMarkup:()=>u,default:()=>v});module.exports=g(h);var p=m(require("react"));var s=m(require("react")),C=require("react-native-svg"),c=({children:r,size:o=24,...t})=>s.default.createElement(C.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),u=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M15.2051 17.1104L13.7148 19.5H21.0098V21H3V17.7705L6.35547 11.9736L15.2051 17.1104ZM21.8594 8.43555L17.0889 16.4688L5.96387 10.0117L10.7344 1.97852L21.8594 8.43555Z",fill:"currentColor"})),v=u;0&&(module.exports={IconMarkup});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMarkup/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 IconMarkup: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.2051 17.1104L13.7148 19.5H21.0098V21H3V17.7705L6.35547 11.9736L15.2051 17.1104ZM21.8594 8.43555L17.0889 16.4688L5.96387 10.0117L10.7344 1.97852L21.8594 8.43555Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMarkup;\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,gBAAAE,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,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,uKACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconMarkup_exports","__export","IconMarkup","IconMarkup_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMarkup","props","React","CentralIconBase","IconMarkup_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as a}from"react-native-svg";var t=({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 l}from"react-native-svg";var m=o=>e.createElement(t,{...o},e.createElement(l,{d:"M15.2051 17.1104L13.7148 19.5H21.0098V21H3V17.7705L6.35547 11.9736L15.2051 17.1104ZM21.8594 8.43555L17.0889 16.4688L5.96387 10.0117L10.7344 1.97852L21.8594 8.43555Z",fill:"currentColor"})),L=m;export{m as IconMarkup,L as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMarkup/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 IconMarkup: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M15.2051 17.1104L13.7148 19.5H21.0098V21H3V17.7705L6.35547 11.9736L15.2051 17.1104ZM21.8594 8.43555L17.0889 16.4688L5.96387 10.0117L10.7344 1.97852L21.8594 8.43555Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMarkup;\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,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,uKACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMarkup","props","React","CentralIconBase","IconMarkup_default"]}
|
package/README.md
CHANGED
|
@@ -147,6 +147,7 @@ Below is a complete list of available icons:
|
|
|
147
147
|
- IconBrain1
|
|
148
148
|
- IconBrain2
|
|
149
149
|
- IconBroomSparkle
|
|
150
|
+
- IconCursorAi
|
|
150
151
|
- IconCuteRobot
|
|
151
152
|
- IconEyeSparkle
|
|
152
153
|
- IconFortuneTellerBall
|
|
@@ -561,6 +562,7 @@ Below is a complete list of available icons:
|
|
|
561
562
|
- IconColorSwatch
|
|
562
563
|
- IconComponents
|
|
563
564
|
- IconCornerRadius
|
|
565
|
+
- IconDispersion
|
|
564
566
|
- IconEditBig
|
|
565
567
|
- IconEditSmall1
|
|
566
568
|
- IconEditSmall2
|
|
@@ -575,6 +577,7 @@ Below is a complete list of available icons:
|
|
|
575
577
|
- IconMarkdown
|
|
576
578
|
- IconMarker
|
|
577
579
|
- IconMarkerCircle
|
|
580
|
+
- IconMarkup
|
|
578
581
|
- IconPaintBrush
|
|
579
582
|
- IconPaintBucket
|
|
580
583
|
- IconPaintBucketDrop
|
package/filtered-icons.json
CHANGED
|
@@ -7196,6 +7196,20 @@
|
|
|
7196
7196
|
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
7197
7197
|
"componentName": "IconCursor3"
|
|
7198
7198
|
},
|
|
7199
|
+
{
|
|
7200
|
+
"category": "AI & Magic",
|
|
7201
|
+
"svg": "<path d=\"M7.12402 4.32812L7.75 4.56934V7.44727L8.72852 7.66504C9.98867 7.94507 10.4001 8.15399 10.623 8.37695C10.846 8.59992 11.0549 9.01133 11.335 10.2715L11.5527 11.25H14.4473L14.665 10.2715C14.9451 9.01133 15.154 8.59992 15.377 8.37695C15.5336 8.22029 15.7837 8.07175 16.3555 7.89941L22.8359 10.4062L14.5811 14.6113L9.8418 22.7646L2.4668 2.41016L7.12402 4.32812Z\" fill=\"currentColor\"/><path d=\"M13.4444 2H12.5556C12 4.5 11.5 5 9 5.55556V6.44444C11.5 7 12 7.5 12.5556 10H13.4444C14 7.5 14.5 7 17 6.44444V5.55556C14.5 5 14 4.5 13.4444 2Z\" fill=\"currentColor\"/>",
|
|
7202
|
+
"iconName": "cursor-ai, agent, magic",
|
|
7203
|
+
"variant": {
|
|
7204
|
+
"join": "square",
|
|
7205
|
+
"filled": "on",
|
|
7206
|
+
"radius": "0",
|
|
7207
|
+
"stroke": "1.5"
|
|
7208
|
+
},
|
|
7209
|
+
"createdAt": "2025-09-05T13:00:48.653264+00:00",
|
|
7210
|
+
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
7211
|
+
"componentName": "IconCursorAi"
|
|
7212
|
+
},
|
|
7199
7213
|
{
|
|
7200
7214
|
"category": "Arrows",
|
|
7201
7215
|
"svg": "<path d=\"M11.75 2V5.25H10.25V2H11.75Z\" fill=\"currentColor\"/><path d=\"M17.9669 5.09289L15.5956 7.46421L14.5349 6.40355L16.9062 4.03223L17.9669 5.09289Z\" fill=\"currentColor\"/><path d=\"M5.09364 17.9671L7.46496 15.5958L6.4043 14.5352L4.03298 16.9065L5.09364 17.9671Z\" fill=\"currentColor\"/><path d=\"M5.25 11.75H2V10.25H5.25V11.75Z\" fill=\"currentColor\"/><path d=\"M4.03286 5.09364L6.40418 7.46496L7.46484 6.4043L5.09352 4.03298L4.03286 5.09364Z\" fill=\"currentColor\"/><path d=\"M22.9675 14.3594L8.93945 8.93945L14.3594 22.9675L17.5476 17.5476L22.9675 14.3594Z\" fill=\"currentColor\"/>",
|
|
@@ -7672,6 +7686,20 @@
|
|
|
7672
7686
|
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
7673
7687
|
"componentName": "IconDishwasher"
|
|
7674
7688
|
},
|
|
7689
|
+
{
|
|
7690
|
+
"category": "Edit",
|
|
7691
|
+
"svg": "<path d=\"M21.3037 20.126L20.374 21.3037L14.4463 16.624L15.376 15.4463L21.3037 20.126Z\" fill=\"currentColor\"/><path d=\"M12.75 21H11.25V3H12.75V21Z\" fill=\"currentColor\"/><path d=\"M9 16.5H2V15H9V16.5Z\" fill=\"currentColor\"/><path d=\"M9 12.75H2V11.25H9V12.75Z\" fill=\"currentColor\"/><path d=\"M22 12.75H15V11.25H22V12.75Z\" fill=\"currentColor\"/><path d=\"M21.3037 3.87402L15.376 8.55371L14.4463 7.37598L20.374 2.69629L21.3037 3.87402Z\" fill=\"currentColor\"/><path d=\"M9 8.5H2V7H9V8.5Z\" fill=\"currentColor\"/>",
|
|
7692
|
+
"iconName": "dispersion, refraction",
|
|
7693
|
+
"variant": {
|
|
7694
|
+
"join": "square",
|
|
7695
|
+
"filled": "on",
|
|
7696
|
+
"radius": "0",
|
|
7697
|
+
"stroke": "1.5"
|
|
7698
|
+
},
|
|
7699
|
+
"createdAt": "2025-09-05T13:00:48.653264+00:00",
|
|
7700
|
+
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
7701
|
+
"componentName": "IconDispersion"
|
|
7702
|
+
},
|
|
7675
7703
|
{
|
|
7676
7704
|
"category": "Typography",
|
|
7677
7705
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 4H6V5.5H2V4ZM10 4H14V5.5H10V4ZM18 4H22V5.5H18V4ZM2 11.25H22V12.75H2V11.25ZM2 18.5H6V20H2V18.5ZM10 18.5H14V20H10V18.5ZM18 18.5H22V20H18V18.5Z\" fill=\"currentColor\"/>",
|
|
@@ -12600,6 +12628,20 @@
|
|
|
12600
12628
|
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
12601
12629
|
"componentName": "IconMarkerCircle"
|
|
12602
12630
|
},
|
|
12631
|
+
{
|
|
12632
|
+
"category": "Edit",
|
|
12633
|
+
"svg": "<path d=\"M15.2051 17.1104L13.7148 19.5H21.0098V21H3V17.7705L6.35547 11.9736L15.2051 17.1104ZM21.8594 8.43555L17.0889 16.4688L5.96387 10.0117L10.7344 1.97852L21.8594 8.43555Z\" fill=\"currentColor\"/>",
|
|
12634
|
+
"iconName": "markup, marker, highlight",
|
|
12635
|
+
"variant": {
|
|
12636
|
+
"join": "square",
|
|
12637
|
+
"filled": "on",
|
|
12638
|
+
"radius": "0",
|
|
12639
|
+
"stroke": "1.5"
|
|
12640
|
+
},
|
|
12641
|
+
"createdAt": "2025-09-09T06:30:34.762588+00:00",
|
|
12642
|
+
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
12643
|
+
"componentName": "IconMarkup"
|
|
12644
|
+
},
|
|
12603
12645
|
{
|
|
12604
12646
|
"category": "Things",
|
|
12605
12647
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 2.32996L3.90115 2.51537C9.41135 3.64912 14.5887 3.64912 20.0989 2.51537L21 2.32996V12.5C21 17.4705 16.9706 21.5 12 21.5C7.02944 21.5 3 17.4705 3 12.5V2.32996ZM16 13C13.5 17.6667 10.5 17.6667 8 13C11 14.1667 13 14.1667 16 13ZM11 10.1058C11 10.6421 10.7135 10.5298 10.2732 10.3572C9.98547 10.2444 9.63203 10.1058 9.25 10.1058C8.86797 10.1058 8.51453 10.2444 8.22676 10.3572C7.78652 10.5298 7.5 10.6421 7.5 10.1058C7.5 9.21896 8.2835 8.5 9.25 8.5C10.2165 8.5 11 9.21896 11 10.1058ZM15.7732 10.3572C16.2135 10.5298 16.5 10.6421 16.5 10.1058C16.5 9.21896 15.7165 8.5 14.75 8.5C13.7835 8.5 13 9.21896 13 10.1058C13 10.6421 13.2865 10.5298 13.7268 10.3572C14.0145 10.2444 14.368 10.1058 14.75 10.1058C15.132 10.1058 15.4855 10.2444 15.7732 10.3572Z\" fill=\"currentColor\"/>",
|
|
@@ -13163,7 +13205,7 @@
|
|
|
13163
13205
|
{
|
|
13164
13206
|
"category": "Communication",
|
|
13165
13207
|
"svg": "<path d=\"M11.25 5.37695L2 3.31445V19.2888L11.25 21.3513V5.37695Z\" fill=\"currentColor\"/><path d=\"M12.75 5.37695V21.3513L22 19.2888V3.31445L12.75 5.37695Z\" fill=\"currentColor\"/>",
|
|
13166
|
-
"iconName": "newspaper-1, guide, info, faq",
|
|
13208
|
+
"iconName": "newspaper-1, guide, info, faq, book",
|
|
13167
13209
|
"variant": {
|
|
13168
13210
|
"join": "square",
|
|
13169
13211
|
"filled": "on",
|
|
@@ -13177,7 +13219,7 @@
|
|
|
13177
13219
|
{
|
|
13178
13220
|
"category": "Communication",
|
|
13179
13221
|
"svg": "<path d=\"M1 4V20H9C9.867 20 10.4085 20.2352 10.7304 20.5445C11.0491 20.8507 11.25 21.323 11.25 22V7.75C11.25 5.67893 9.57107 4 7.5 4H1Z\" fill=\"currentColor\"/><path d=\"M12.75 7.75V22C12.75 21.323 12.9509 20.8507 13.2696 20.5445C13.5915 20.2352 14.133 20 15 20H23V4H16.5C14.4289 4 12.75 5.67893 12.75 7.75Z\" fill=\"currentColor\"/>",
|
|
13180
|
-
"iconName": "newspaper-2, guide, info, faq",
|
|
13222
|
+
"iconName": "newspaper-2, guide, info, faq, book",
|
|
13181
13223
|
"variant": {
|
|
13182
13224
|
"join": "square",
|
|
13183
13225
|
"filled": "on",
|
package/icons/index.d.ts
CHANGED
|
@@ -513,6 +513,7 @@ export type CentralIconName =
|
|
|
513
513
|
| "IconCursor1"
|
|
514
514
|
| "IconCursor2"
|
|
515
515
|
| "IconCursor3"
|
|
516
|
+
| "IconCursorAi"
|
|
516
517
|
| "IconCursorClick"
|
|
517
518
|
| "IconCursorList"
|
|
518
519
|
| "IconCurtain"
|
|
@@ -547,6 +548,7 @@ export type CentralIconName =
|
|
|
547
548
|
| "IconDirectorChair"
|
|
548
549
|
| "IconDiscord"
|
|
549
550
|
| "IconDishwasher"
|
|
551
|
+
| "IconDispersion"
|
|
550
552
|
| "IconDivider"
|
|
551
553
|
| "IconDollar"
|
|
552
554
|
| "IconDonut"
|
|
@@ -899,6 +901,7 @@ export type CentralIconName =
|
|
|
899
901
|
| "IconMarkdown"
|
|
900
902
|
| "IconMarker"
|
|
901
903
|
| "IconMarkerCircle"
|
|
904
|
+
| "IconMarkup"
|
|
902
905
|
| "IconMask"
|
|
903
906
|
| "IconMastadon"
|
|
904
907
|
| "IconMathBasic"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-filled-radius-0-stroke-1.5",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"style": "square-filled-radius-0-stroke-1.5",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-1.5/IconHome';",
|
|
@@ -11,16 +11,17 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1523,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
|
-
"count":
|
|
17
|
+
"count": 33,
|
|
18
18
|
"icons": [
|
|
19
19
|
"IconAppleIntelligenceIcon",
|
|
20
20
|
"IconBoxSparkle",
|
|
21
21
|
"IconBrain1",
|
|
22
22
|
"IconBrain2",
|
|
23
23
|
"IconBroomSparkle",
|
|
24
|
+
"IconCursorAi",
|
|
24
25
|
"IconCuteRobot",
|
|
25
26
|
"IconEyeSparkle",
|
|
26
27
|
"IconFortuneTellerBall",
|
|
@@ -428,7 +429,7 @@
|
|
|
428
429
|
]
|
|
429
430
|
},
|
|
430
431
|
"Edit": {
|
|
431
|
-
"count":
|
|
432
|
+
"count": 68,
|
|
432
433
|
"icons": [
|
|
433
434
|
"IconAddKeyframe",
|
|
434
435
|
"IconBezier",
|
|
@@ -455,6 +456,7 @@
|
|
|
455
456
|
"IconColorSwatch",
|
|
456
457
|
"IconComponents",
|
|
457
458
|
"IconCornerRadius",
|
|
459
|
+
"IconDispersion",
|
|
458
460
|
"IconEditBig",
|
|
459
461
|
"IconEditSmall1",
|
|
460
462
|
"IconEditSmall2",
|
|
@@ -469,6 +471,7 @@
|
|
|
469
471
|
"IconMarkdown",
|
|
470
472
|
"IconMarker",
|
|
471
473
|
"IconMarkerCircle",
|
|
474
|
+
"IconMarkup",
|
|
472
475
|
"IconPaintBrush",
|
|
473
476
|
"IconPaintBucket",
|
|
474
477
|
"IconPaintBucketDrop",
|
|
@@ -2224,6 +2227,7 @@
|
|
|
2224
2227
|
"IconCursor1": "cursor-1, arrow",
|
|
2225
2228
|
"IconCursor2": "cursor-2, arrow",
|
|
2226
2229
|
"IconCursor3": "cursor-3, arrow",
|
|
2230
|
+
"IconCursorAi": "cursor-ai, agent, magic",
|
|
2227
2231
|
"IconCursorClick": "cursor-click, arrow, clickbait",
|
|
2228
2232
|
"IconCursorList": "cursor-list, cursor, list",
|
|
2229
2233
|
"IconCurtain": "curtain, showtime, theater",
|
|
@@ -2258,6 +2262,7 @@
|
|
|
2258
2262
|
"IconDirectorChair": "director-chair, chair",
|
|
2259
2263
|
"IconDiscord": "discord",
|
|
2260
2264
|
"IconDishwasher": "dishwasher, clean",
|
|
2265
|
+
"IconDispersion": "dispersion, refraction",
|
|
2261
2266
|
"IconDivider": "divider, add-line",
|
|
2262
2267
|
"IconDollar": "dollar, currency, money, coin, USD",
|
|
2263
2268
|
"IconDonut": "donut",
|
|
@@ -2610,6 +2615,7 @@
|
|
|
2610
2615
|
"IconMarkdown": "markdown",
|
|
2611
2616
|
"IconMarker": "marker, highlight",
|
|
2612
2617
|
"IconMarkerCircle": "marker-circle, highlight",
|
|
2618
|
+
"IconMarkup": "markup, marker, highlight",
|
|
2613
2619
|
"IconMask": "mask, theatre",
|
|
2614
2620
|
"IconMastadon": "mastadon",
|
|
2615
2621
|
"IconMathBasic": "math-basic, calc",
|
|
@@ -2650,8 +2656,8 @@
|
|
|
2650
2656
|
"IconMute": "mute, sound-off",
|
|
2651
2657
|
"IconNailedIt": "nailed-it",
|
|
2652
2658
|
"IconNewspaper": "newspaper, News, paper",
|
|
2653
|
-
"IconNewspaper1": "newspaper-1, guide, info, faq",
|
|
2654
|
-
"IconNewspaper2": "newspaper-2, guide, info, faq",
|
|
2659
|
+
"IconNewspaper1": "newspaper-1, guide, info, faq, book",
|
|
2660
|
+
"IconNewspaper2": "newspaper-2, guide, info, faq, book",
|
|
2655
2661
|
"IconNewspaper3": "newspaper-3",
|
|
2656
2662
|
"IconNfc1": "nfc-1",
|
|
2657
2663
|
"IconNfc2": "nfc-2",
|
package/license-check.js
CHANGED
package/package.json
CHANGED
package/tsx-icons.json
CHANGED
|
@@ -3598,6 +3598,13 @@
|
|
|
3598
3598
|
"iconName": "cursor-3, arrow",
|
|
3599
3599
|
"pathname": "src/IconCursor3"
|
|
3600
3600
|
},
|
|
3601
|
+
{
|
|
3602
|
+
"svg": "<Path d=\"M7.12402 4.32812L7.75 4.56934V7.44727L8.72852 7.66504C9.98867 7.94507 10.4001 8.15399 10.623 8.37695C10.846 8.59992 11.0549 9.01133 11.335 10.2715L11.5527 11.25H14.4473L14.665 10.2715C14.9451 9.01133 15.154 8.59992 15.377 8.37695C15.5336 8.22029 15.7837 8.07175 16.3555 7.89941L22.8359 10.4062L14.5811 14.6113L9.8418 22.7646L2.4668 2.41016L7.12402 4.32812Z\" fill=\"currentColor\"/><Path d=\"M13.4444 2H12.5556C12 4.5 11.5 5 9 5.55556V6.44444C11.5 7 12 7.5 12.5556 10H13.4444C14 7.5 14.5 7 17 6.44444V5.55556C14.5 5 14 4.5 13.4444 2Z\" fill=\"currentColor\"/>",
|
|
3603
|
+
"tags": "Path",
|
|
3604
|
+
"componentName": "IconCursorAi",
|
|
3605
|
+
"iconName": "cursor-ai, agent, magic",
|
|
3606
|
+
"pathname": "src/IconCursorAi"
|
|
3607
|
+
},
|
|
3601
3608
|
{
|
|
3602
3609
|
"svg": "<Path d=\"M11.75 2V5.25H10.25V2H11.75Z\" fill=\"currentColor\"/><Path d=\"M17.9669 5.09289L15.5956 7.46421L14.5349 6.40355L16.9062 4.03223L17.9669 5.09289Z\" fill=\"currentColor\"/><Path d=\"M5.09364 17.9671L7.46496 15.5958L6.4043 14.5352L4.03298 16.9065L5.09364 17.9671Z\" fill=\"currentColor\"/><Path d=\"M5.25 11.75H2V10.25H5.25V11.75Z\" fill=\"currentColor\"/><Path d=\"M4.03286 5.09364L6.40418 7.46496L7.46484 6.4043L5.09352 4.03298L4.03286 5.09364Z\" fill=\"currentColor\"/><Path d=\"M22.9675 14.3594L8.93945 8.93945L14.3594 22.9675L17.5476 17.5476L22.9675 14.3594Z\" fill=\"currentColor\"/>",
|
|
3603
3610
|
"tags": "Path",
|
|
@@ -3836,6 +3843,13 @@
|
|
|
3836
3843
|
"iconName": "dishwasher, clean",
|
|
3837
3844
|
"pathname": "src/IconDishwasher"
|
|
3838
3845
|
},
|
|
3846
|
+
{
|
|
3847
|
+
"svg": "<Path d=\"M21.3037 20.126L20.374 21.3037L14.4463 16.624L15.376 15.4463L21.3037 20.126Z\" fill=\"currentColor\"/><Path d=\"M12.75 21H11.25V3H12.75V21Z\" fill=\"currentColor\"/><Path d=\"M9 16.5H2V15H9V16.5Z\" fill=\"currentColor\"/><Path d=\"M9 12.75H2V11.25H9V12.75Z\" fill=\"currentColor\"/><Path d=\"M22 12.75H15V11.25H22V12.75Z\" fill=\"currentColor\"/><Path d=\"M21.3037 3.87402L15.376 8.55371L14.4463 7.37598L20.374 2.69629L21.3037 3.87402Z\" fill=\"currentColor\"/><Path d=\"M9 8.5H2V7H9V8.5Z\" fill=\"currentColor\"/>",
|
|
3848
|
+
"tags": "Path",
|
|
3849
|
+
"componentName": "IconDispersion",
|
|
3850
|
+
"iconName": "dispersion, refraction",
|
|
3851
|
+
"pathname": "src/IconDispersion"
|
|
3852
|
+
},
|
|
3839
3853
|
{
|
|
3840
3854
|
"svg": "<Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 4H6V5.5H2V4ZM10 4H14V5.5H10V4ZM18 4H22V5.5H18V4ZM2 11.25H22V12.75H2V11.25ZM2 18.5H6V20H2V18.5ZM10 18.5H14V20H10V18.5ZM18 18.5H22V20H18V18.5Z\" fill=\"currentColor\"/>",
|
|
3841
3855
|
"tags": "Path",
|
|
@@ -6300,6 +6314,13 @@
|
|
|
6300
6314
|
"iconName": "marker-circle,highlight",
|
|
6301
6315
|
"pathname": "src/IconMarkerCircle"
|
|
6302
6316
|
},
|
|
6317
|
+
{
|
|
6318
|
+
"svg": "<Path d=\"M15.2051 17.1104L13.7148 19.5H21.0098V21H3V17.7705L6.35547 11.9736L15.2051 17.1104ZM21.8594 8.43555L17.0889 16.4688L5.96387 10.0117L10.7344 1.97852L21.8594 8.43555Z\" fill=\"currentColor\"/>",
|
|
6319
|
+
"tags": "Path",
|
|
6320
|
+
"componentName": "IconMarkup",
|
|
6321
|
+
"iconName": "markup, marker, highlight",
|
|
6322
|
+
"pathname": "src/IconMarkup"
|
|
6323
|
+
},
|
|
6303
6324
|
{
|
|
6304
6325
|
"svg": "<Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 2.32996L3.90115 2.51537C9.41135 3.64912 14.5887 3.64912 20.0989 2.51537L21 2.32996V12.5C21 17.4705 16.9706 21.5 12 21.5C7.02944 21.5 3 17.4705 3 12.5V2.32996ZM16 13C13.5 17.6667 10.5 17.6667 8 13C11 14.1667 13 14.1667 16 13ZM11 10.1058C11 10.6421 10.7135 10.5298 10.2732 10.3572C9.98547 10.2444 9.63203 10.1058 9.25 10.1058C8.86797 10.1058 8.51453 10.2444 8.22676 10.3572C7.78652 10.5298 7.5 10.6421 7.5 10.1058C7.5 9.21896 8.2835 8.5 9.25 8.5C10.2165 8.5 11 9.21896 11 10.1058ZM15.7732 10.3572C16.2135 10.5298 16.5 10.6421 16.5 10.1058C16.5 9.21896 15.7165 8.5 14.75 8.5C13.7835 8.5 13 9.21896 13 10.1058C13 10.6421 13.2865 10.5298 13.7268 10.3572C14.0145 10.2444 14.368 10.1058 14.75 10.1058C15.132 10.1058 15.4855 10.2444 15.7732 10.3572Z\" fill=\"currentColor\"/>",
|
|
6305
6326
|
"tags": "Path",
|
|
@@ -6584,14 +6605,14 @@
|
|
|
6584
6605
|
"svg": "<Path d=\"M11.25 5.37695L2 3.31445V19.2888L11.25 21.3513V5.37695Z\" fill=\"currentColor\"/><Path d=\"M12.75 5.37695V21.3513L22 19.2888V3.31445L12.75 5.37695Z\" fill=\"currentColor\"/>",
|
|
6585
6606
|
"tags": "Path",
|
|
6586
6607
|
"componentName": "IconNewspaper1",
|
|
6587
|
-
"iconName": "newspaper-1, guide, info, faq",
|
|
6608
|
+
"iconName": "newspaper-1, guide, info, faq, book",
|
|
6588
6609
|
"pathname": "src/IconNewspaper1"
|
|
6589
6610
|
},
|
|
6590
6611
|
{
|
|
6591
6612
|
"svg": "<Path d=\"M1 4V20H9C9.867 20 10.4085 20.2352 10.7304 20.5445C11.0491 20.8507 11.25 21.323 11.25 22V7.75C11.25 5.67893 9.57107 4 7.5 4H1Z\" fill=\"currentColor\"/><Path d=\"M12.75 7.75V22C12.75 21.323 12.9509 20.8507 13.2696 20.5445C13.5915 20.2352 14.133 20 15 20H23V4H16.5C14.4289 4 12.75 5.67893 12.75 7.75Z\" fill=\"currentColor\"/>",
|
|
6592
6613
|
"tags": "Path",
|
|
6593
6614
|
"componentName": "IconNewspaper2",
|
|
6594
|
-
"iconName": "newspaper-2, guide, info, faq",
|
|
6615
|
+
"iconName": "newspaper-2, guide, info, faq, book",
|
|
6595
6616
|
"pathname": "src/IconNewspaper2"
|
|
6596
6617
|
},
|
|
6597
6618
|
{
|