@central-icons-react/square-filled-radius-0-stroke-1.5 1.1.50 → 1.1.51
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/IconArrowsAllSides21/index.d.ts +4 -0
- package/IconArrowsAllSides21/index.js +2 -0
- package/IconArrowsAllSides21/index.js.map +1 -0
- package/IconArrowsAllSides21/index.mjs +2 -0
- package/IconArrowsAllSides21/index.mjs.map +1 -0
- package/IconScanTextSparkle/index.d.ts +4 -0
- package/IconScanTextSparkle/index.js +2 -0
- package/IconScanTextSparkle/index.js.map +1 -0
- package/IconScanTextSparkle/index.mjs +2 -0
- package/IconScanTextSparkle/index.mjs.map +1 -0
- package/README.md +2 -0
- package/icons/index.d.ts +2 -0
- package/icons/index.js +1 -1
- package/icons/index.js.map +1 -1
- package/icons/index.mjs +1 -1
- package/icons/index.mjs.map +1 -1
- package/icons-index.json +8 -4
- package/index.d.ts +8 -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
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var H=Object.create;var p=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,n)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of m(o))!h.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(n=c(o,e))||n.enumerable});return r};var i=(r,o,t)=>(t=r!=null?H(d(r)):{},a(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(p({},"__esModule",{value:!0}),r);var B={};x(B,{IconArrowsAllSides21:()=>f,default:()=>w});module.exports=g(B);var l=i(require("react"));var s=i(require("react")),V=({children:r,size:o=24,ariaLabel:t,color:n,ariaHidden:e=!0,style:u,...C})=>s.default.createElement("svg",{...C,"aria-hidden":e,role:e?void 0:"img",width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:n,...u}},t&&!e&&s.default.createElement("title",null,t),r);var f=r=>l.default.createElement(V,{...r,ariaLabel:"arrows-all-sides-2, scan-text, text, focus, list"},l.default.createElement("path",{d:"M4.5 19.5H9V21H3V15H4.5V19.5Z",fill:"currentColor"}),l.default.createElement("path",{d:"M21 21H15V19.5H19.5V15H21V21Z",fill:"currentColor"}),l.default.createElement("path",{d:"M14 15H8V13.5H14V15Z",fill:"currentColor"}),l.default.createElement("path",{d:"M16 10.5H8V9H16V10.5Z",fill:"currentColor"}),l.default.createElement("path",{d:"M9 4.5H4.5V9H3V3H9V4.5Z",fill:"currentColor"}),l.default.createElement("path",{d:"M21 9H19.5V4.5H15V3H21V9Z",fill:"currentColor"})),w=f;0&&(module.exports={IconArrowsAllSides21});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowsAllSides21/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowsAllSides21: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"arrows-all-sides-2, scan-text, text, focus, list\"\n >\n <path d=\"M4.5 19.5H9V21H3V15H4.5V19.5Z\" fill=\"currentColor\" />\n <path d=\"M21 21H15V19.5H19.5V15H21V21Z\" fill=\"currentColor\" />\n <path d=\"M14 15H8V13.5H14V15Z\" fill=\"currentColor\" />\n <path d=\"M16 10.5H8V9H16V10.5Z\" fill=\"currentColor\" />\n <path d=\"M9 4.5H4.5V9H3V3H9V4.5Z\" fill=\"currentColor\" />\n <path d=\"M21 9H19.5V4.5H15V3H21V9Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsAllSides21;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,0BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAwDC,GAEjE,EAAAC,QAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,oDAEV,EAAAC,QAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5D,EAAAA,QAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5D,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,KAAK,eAAe,EACnD,EAAAA,QAAA,cAAC,QAAK,EAAE,wBAAwB,KAAK,eAAe,EACpD,EAAAA,QAAA,cAAC,QAAK,EAAE,0BAA0B,KAAK,eAAe,EACtD,EAAAA,QAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,CAC1D,EAIGE,EAAQJ","names":["IconArrowsAllSides21_exports","__export","IconArrowsAllSides21","IconArrowsAllSides21_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowsAllSides21","props","React","CentralIconBase","IconArrowsAllSides21_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import n from"react";var p=({children:t,size:o=24,ariaLabel:l,color:s,ariaHidden:e=!0,style:a,...i})=>n.createElement("svg",{...i,"aria-hidden":e,role:e?void 0:"img",width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...a}},l&&!e&&n.createElement("title",null,l),t);var V=t=>r.createElement(p,{...t,ariaLabel:"arrows-all-sides-2, scan-text, text, focus, list"},r.createElement("path",{d:"M4.5 19.5H9V21H3V15H4.5V19.5Z",fill:"currentColor"}),r.createElement("path",{d:"M21 21H15V19.5H19.5V15H21V21Z",fill:"currentColor"}),r.createElement("path",{d:"M14 15H8V13.5H14V15Z",fill:"currentColor"}),r.createElement("path",{d:"M16 10.5H8V9H16V10.5Z",fill:"currentColor"}),r.createElement("path",{d:"M9 4.5H4.5V9H3V3H9V4.5Z",fill:"currentColor"}),r.createElement("path",{d:"M21 9H19.5V4.5H15V3H21V9Z",fill:"currentColor"})),c=V;export{V as IconArrowsAllSides21,c as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowsAllSides21/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowsAllSides21: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"arrows-all-sides-2, scan-text, text, focus, list\"\n >\n <path d=\"M4.5 19.5H9V21H3V15H4.5V19.5Z\" fill=\"currentColor\" />\n <path d=\"M21 21H15V19.5H19.5V15H21V21Z\" fill=\"currentColor\" />\n <path d=\"M14 15H8V13.5H14V15Z\" fill=\"currentColor\" />\n <path d=\"M16 10.5H8V9H16V10.5Z\" fill=\"currentColor\" />\n <path d=\"M9 4.5H4.5V9H3V3H9V4.5Z\" fill=\"currentColor\" />\n <path d=\"M21 9H19.5V4.5H15V3H21V9Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowsAllSides21;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAwDC,GAEjEC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,oDAEVC,EAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5DA,EAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5DA,EAAA,cAAC,QAAK,EAAE,uBAAuB,KAAK,eAAe,EACnDA,EAAA,cAAC,QAAK,EAAE,wBAAwB,KAAK,eAAe,EACpDA,EAAA,cAAC,QAAK,EAAE,0BAA0B,KAAK,eAAe,EACtDA,EAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,CAC1D,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowsAllSides21","props","React","CentralIconBase","IconArrowsAllSides21_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var C=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var H=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,n)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of H(o))!h.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(n=m(o,e))||n.enumerable});return r};var i=(r,o,t)=>(t=r!=null?C(d(r)):{},s(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),L=r=>s(p({},"__esModule",{value:!0}),r);var B={};x(B,{IconScanTextSparkle:()=>c,default:()=>g});module.exports=L(B);var l=i(require("react"));var a=i(require("react")),V=({children:r,size:o=24,ariaLabel:t,color:n,ariaHidden:e=!0,style:f,...u})=>a.default.createElement("svg",{...u,"aria-hidden":e,role:e?void 0:"img",width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:n,...f}},t&&!e&&a.default.createElement("title",null,t),r);var c=r=>l.default.createElement(V,{...r,ariaLabel:"scan-text-sparkle, scan, arrows-all-sides,focus, list"},l.default.createElement("path",{d:"M4.5 19.5H9V21H3V15H4.5V19.5Z",fill:"currentColor"}),l.default.createElement("path",{d:"M14 15H8V13.5H14V15Z",fill:"currentColor"}),l.default.createElement("path",{d:"M16 10.5H8V9H16V10.5Z",fill:"currentColor"}),l.default.createElement("path",{d:"M9 4.5H4.5V9H3V3H9V4.5Z",fill:"currentColor"}),l.default.createElement("path",{d:"M21 9H19.5V4.5H15V3H21V9Z",fill:"currentColor"}),l.default.createElement("path",{d:"M18.4 14H17.6L16.6 16.6L14 17.6V18.4L16.6 19.4L17.6 22H18.4L19.4 19.4L22 18.4V17.6L19.4 16.6L18.4 14Z",fill:"currentColor"})),g=c;0&&(module.exports={IconScanTextSparkle});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconScanTextSparkle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconScanTextSparkle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"scan-text-sparkle, scan, arrows-all-sides,focus, list\"\n >\n <path d=\"M4.5 19.5H9V21H3V15H4.5V19.5Z\" fill=\"currentColor\" />\n <path d=\"M14 15H8V13.5H14V15Z\" fill=\"currentColor\" />\n <path d=\"M16 10.5H8V9H16V10.5Z\" fill=\"currentColor\" />\n <path d=\"M9 4.5H4.5V9H3V3H9V4.5Z\" fill=\"currentColor\" />\n <path d=\"M21 9H19.5V4.5H15V3H21V9Z\" fill=\"currentColor\" />\n <path\n d=\"M18.4 14H17.6L16.6 16.6L14 17.6V18.4L16.6 19.4L17.6 22H18.4L19.4 19.4L22 18.4V17.6L19.4 16.6L18.4 14Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconScanTextSparkle;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,yBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAuDC,GAEhE,EAAAC,QAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,yDAEV,EAAAC,QAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5D,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,KAAK,eAAe,EACnD,EAAAA,QAAA,cAAC,QAAK,EAAE,wBAAwB,KAAK,eAAe,EACpD,EAAAA,QAAA,cAAC,QAAK,EAAE,0BAA0B,KAAK,eAAe,EACtD,EAAAA,QAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxD,EAAAA,QAAA,cAAC,QACC,EAAE,wGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconScanTextSparkle_exports","__export","IconScanTextSparkle","IconScanTextSparkle_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconScanTextSparkle","props","React","CentralIconBase","IconScanTextSparkle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import n from"react";var p=({children:t,size:o=24,ariaLabel:l,color:a,ariaHidden:e=!0,style:s,...i})=>n.createElement("svg",{...i,"aria-hidden":e,role:e?void 0:"img",width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...s}},l&&!e&&n.createElement("title",null,l),t);var V=t=>r.createElement(p,{...t,ariaLabel:"scan-text-sparkle, scan, arrows-all-sides,focus, list"},r.createElement("path",{d:"M4.5 19.5H9V21H3V15H4.5V19.5Z",fill:"currentColor"}),r.createElement("path",{d:"M14 15H8V13.5H14V15Z",fill:"currentColor"}),r.createElement("path",{d:"M16 10.5H8V9H16V10.5Z",fill:"currentColor"}),r.createElement("path",{d:"M9 4.5H4.5V9H3V3H9V4.5Z",fill:"currentColor"}),r.createElement("path",{d:"M21 9H19.5V4.5H15V3H21V9Z",fill:"currentColor"}),r.createElement("path",{d:"M18.4 14H17.6L16.6 16.6L14 17.6V18.4L16.6 19.4L17.6 22H18.4L19.4 19.4L22 18.4V17.6L19.4 16.6L18.4 14Z",fill:"currentColor"})),m=V;export{V as IconScanTextSparkle,m as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconScanTextSparkle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconScanTextSparkle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"scan-text-sparkle, scan, arrows-all-sides,focus, list\"\n >\n <path d=\"M4.5 19.5H9V21H3V15H4.5V19.5Z\" fill=\"currentColor\" />\n <path d=\"M14 15H8V13.5H14V15Z\" fill=\"currentColor\" />\n <path d=\"M16 10.5H8V9H16V10.5Z\" fill=\"currentColor\" />\n <path d=\"M9 4.5H4.5V9H3V3H9V4.5Z\" fill=\"currentColor\" />\n <path d=\"M21 9H19.5V4.5H15V3H21V9Z\" fill=\"currentColor\" />\n <path\n d=\"M18.4 14H17.6L16.6 16.6L14 17.6V18.4L16.6 19.4L17.6 22H18.4L19.4 19.4L22 18.4V17.6L19.4 16.6L18.4 14Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconScanTextSparkle;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAuDC,GAEhEC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,yDAEVC,EAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,EAC5DA,EAAA,cAAC,QAAK,EAAE,uBAAuB,KAAK,eAAe,EACnDA,EAAA,cAAC,QAAK,EAAE,wBAAwB,KAAK,eAAe,EACpDA,EAAA,cAAC,QAAK,EAAE,0BAA0B,KAAK,eAAe,EACtDA,EAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDA,EAAA,cAAC,QACC,EAAE,wGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconScanTextSparkle","props","React","CentralIconBase","IconScanTextSparkle_default"]}
|
package/README.md
CHANGED
|
@@ -221,6 +221,7 @@ Below is a complete list of available icons:
|
|
|
221
221
|
- IconPromptTextToImage
|
|
222
222
|
- IconPromptTextToVideo
|
|
223
223
|
- IconRobot
|
|
224
|
+
- IconScanTextSparkle
|
|
224
225
|
- IconSearchIntelligence
|
|
225
226
|
- IconSearchlinesSparkle
|
|
226
227
|
- IconSparkle
|
|
@@ -916,6 +917,7 @@ Below is a complete list of available icons:
|
|
|
916
917
|
- IconArrowRounded
|
|
917
918
|
- IconArrowsAllSides
|
|
918
919
|
- IconArrowsAllSides2
|
|
920
|
+
- IconArrowsAllSides21
|
|
919
921
|
- IconBarcode
|
|
920
922
|
- IconBarsThree
|
|
921
923
|
- IconBarsThree2
|
package/icons/index.d.ts
CHANGED
|
@@ -111,6 +111,7 @@ export type CentralIconName =
|
|
|
111
111
|
| "IconArrowRounded"
|
|
112
112
|
| "IconArrowsAllSides"
|
|
113
113
|
| "IconArrowsAllSides2"
|
|
114
|
+
| "IconArrowsAllSides21"
|
|
114
115
|
| "IconArrowShareLeft"
|
|
115
116
|
| "IconArrowShareRight"
|
|
116
117
|
| "IconArrowSplit"
|
|
@@ -1237,6 +1238,7 @@ export type CentralIconName =
|
|
|
1237
1238
|
| "IconSandbox"
|
|
1238
1239
|
| "IconSatellite1"
|
|
1239
1240
|
| "IconSatellite2"
|
|
1241
|
+
| "IconScanTextSparkle"
|
|
1240
1242
|
| "IconSchool"
|
|
1241
1243
|
| "IconScissors1"
|
|
1242
1244
|
| "IconScissors2"
|