@central-icons-react/square-outlined-radius-0-stroke-1 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 d=Object.create;var a=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var g=(r,e)=>{for(var o in e)a(r,o,{get:e[o],enumerable:!0})},l=(r,e,o,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of h(e))!x.call(r,t)&&t!==o&&a(r,t,{get:()=>e[t],enumerable:!(s=k(e,t))||s.enumerable});return r};var u=(r,e,o)=>(o=r!=null?d(f(r)):{},l(e||!r||!r.__esModule?a(o,"default",{value:r,enumerable:!0}):o,r)),w=r=>l(a({},"__esModule",{value:!0}),r);var I={};g(I,{IconArrowsAllSides21:()=>i,default:()=>B});module.exports=w(I);var n=u(require("react"));var p=u(require("react")),c=({children:r,size:e=24,ariaLabel:o,color:s,ariaHidden:t=!0,style:C,...m})=>p.default.createElement("svg",{...m,"aria-hidden":t,role:t?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...C}},o&&!t&&p.default.createElement("title",null,o),r);var i=r=>n.default.createElement(c,{...r,ariaLabel:"arrows-all-sides-2, scan-text, text, focus, list"},n.default.createElement("path",{d:"M8.5 3.5H3.5V8.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M15.5 3.5H20.5V8.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M20.5 15.5V20.5H15.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M8.5 20.5H3.5V15.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M8.5 9.5H15.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M8.5 14.5H13.5",stroke:"currentColor",strokeLinecap:"square"})),B=i;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=\"M8.5 3.5H3.5V8.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M15.5 3.5H20.5V8.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M20.5 15.5V20.5H15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.5 20.5H3.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M8.5 9.5H15.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path d=\"M8.5 14.5H13.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\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,mBAAmB,OAAO,eAAe,cAAc,SAAS,EACxE,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAS,EACrE,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,CACxE,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 s from"react";var a=({children:o,size:e=24,ariaLabel:n,color:p,ariaHidden:t=!0,style:l,...u})=>s.createElement("svg",{...u,"aria-hidden":t,role:t?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...l}},n&&!t&&s.createElement("title",null,n),o);var c=o=>r.createElement(a,{...o,ariaLabel:"arrows-all-sides-2, scan-text, text, focus, list"},r.createElement("path",{d:"M8.5 3.5H3.5V8.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M15.5 3.5H20.5V8.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M20.5 15.5V20.5H15.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M8.5 20.5H3.5V15.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M8.5 9.5H15.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M8.5 14.5H13.5",stroke:"currentColor",strokeLinecap:"square"})),k=c;export{c as IconArrowsAllSides21,k 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=\"M8.5 3.5H3.5V8.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M15.5 3.5H20.5V8.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M20.5 15.5V20.5H15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.5 20.5H3.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M8.5 9.5H15.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path d=\"M8.5 14.5H13.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\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,mBAAmB,OAAO,eAAe,cAAc,SAAS,EACxEA,EAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAS,EACrEA,EAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,CACxE,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 L=Object.create;var a=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var x=(r,e)=>{for(var o in e)a(r,o,{get:e[o],enumerable:!0})},l=(r,e,o,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of d(e))!h.call(r,t)&&t!==o&&a(r,t,{get:()=>e[t],enumerable:!(s=k(e,t))||s.enumerable});return r};var c=(r,e,o)=>(o=r!=null?L(f(r)):{},l(e||!r||!r.__esModule?a(o,"default",{value:r,enumerable:!0}):o,r)),V=r=>l(a({},"__esModule",{value:!0}),r);var B={};x(B,{IconScanTextSparkle:()=>i,default:()=>g});module.exports=V(B);var n=c(require("react"));var p=c(require("react")),u=({children:r,size:e=24,ariaLabel:o,color:s,ariaHidden:t=!0,style:C,...m})=>p.default.createElement("svg",{...m,"aria-hidden":t,role:t?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...C}},o&&!t&&p.default.createElement("title",null,o),r);var i=r=>n.default.createElement(u,{...r,ariaLabel:"scan-text-sparkle, scan, arrows-all-sides,focus, list"},n.default.createElement("path",{d:"M8.5 3.5H3.5V8.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M15.5 3.5H20.5V8.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M8.5 20.5H3.5V15.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M8.5 9.5H15.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M8.5 14.5H13.5",stroke:"currentColor",strokeLinecap:"square"}),n.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=i;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=\"M8.5 3.5H3.5V8.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M15.5 3.5H20.5V8.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.5 20.5H3.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M8.5 9.5H15.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path d=\"M8.5 14.5H13.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\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,mBAAmB,OAAO,eAAe,cAAc,SAAS,EACxE,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAS,EACrE,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtE,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 s from"react";var a=({children:o,size:e=24,ariaLabel:n,color:p,ariaHidden:t=!0,style:l,...c})=>s.createElement("svg",{...c,"aria-hidden":t,role:t?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...l}},n&&!t&&s.createElement("title",null,n),o);var u=o=>r.createElement(a,{...o,ariaLabel:"scan-text-sparkle, scan, arrows-all-sides,focus, list"},r.createElement("path",{d:"M8.5 3.5H3.5V8.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M15.5 3.5H20.5V8.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M8.5 20.5H3.5V15.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M8.5 9.5H15.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M8.5 14.5H13.5",stroke:"currentColor",strokeLinecap:"square"}),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"})),k=u;export{u as IconScanTextSparkle,k 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=\"M8.5 3.5H3.5V8.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M15.5 3.5H20.5V8.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.5 20.5H3.5V15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M8.5 9.5H15.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path d=\"M8.5 14.5H13.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\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,mBAAmB,OAAO,eAAe,cAAc,SAAS,EACxEA,EAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAS,EACrEA,EAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtEA,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"
|