@central-icons-react/square-outlined-radius-0-stroke-1.5 1.1.49 → 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/IconPersona/index.d.ts +4 -0
- package/IconPersona/index.js +2 -0
- package/IconPersona/index.js.map +1 -0
- package/IconPersona/index.mjs +2 -0
- package/IconPersona/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 +3 -0
- package/icons/index.d.ts +3 -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 +11 -5
- package/index.d.ts +9 -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 a=Object.defineProperty;var C=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var g=(r,e)=>{for(var t in e)a(r,t,{get:e[t],enumerable:!0})},l=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of m(e))!x.call(r,o)&&o!==t&&a(r,o,{get:()=>e[o],enumerable:!(n=C(e,o))||n.enumerable});return r};var i=(r,e,t)=>(t=r!=null?h(f(r)):{},l(e||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t,r)),w=r=>l(a({},"__esModule",{value:!0}),r);var I={};g(I,{IconArrowsAllSides21:()=>c,default:()=>B});module.exports=w(I);var s=i(require("react"));var p=i(require("react")),u=({children:r,size:e=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:d,...k})=>p.default.createElement("svg",{...k,"aria-hidden":o,role:o?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:n,...d}},t&&!o&&p.default.createElement("title",null,t),r);var c=r=>s.default.createElement(u,{...r,ariaLabel:"arrows-all-sides-2, scan-text, text, focus, list"},s.default.createElement("path",{d:"M8.25 3.75H3.75V8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.default.createElement("path",{d:"M15.75 3.75H20.25V8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.default.createElement("path",{d:"M20.25 15.75V20.25H15.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.default.createElement("path",{d:"M8.25 20.25H3.75V15.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.default.createElement("path",{d:"M8.75 9.75H15.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.default.createElement("path",{d:"M8.75 14.25H13.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),B=c;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\n d=\"M8.25 3.75H3.75V8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M15.75 3.75H20.25V8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M20.25 15.75V20.25H15.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.25 20.25H3.75V15.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.75 9.75H15.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.75 14.25H13.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\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,QACC,EAAE,uBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2BACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,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 a=({children:t,size:e=24,ariaLabel:s,color:p,ariaHidden:o=!0,style:l,...i})=>n.createElement("svg",{...i,"aria-hidden":o,role:o?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}},s&&!o&&n.createElement("title",null,s),t);var u=t=>r.createElement(a,{...t,ariaLabel:"arrows-all-sides-2, scan-text, text, focus, list"},r.createElement("path",{d:"M8.25 3.75H3.75V8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M15.75 3.75H20.25V8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M20.25 15.75V20.25H15.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M8.25 20.25H3.75V15.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M8.75 9.75H15.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M8.75 14.25H13.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),C=u;export{u 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\n d=\"M8.25 3.75H3.75V8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M15.75 3.75H20.25V8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M20.25 15.75V20.25H15.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.25 20.25H3.75V15.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.75 9.75H15.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.75 14.25H13.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\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,QACC,EAAE,uBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,2BACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,oBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,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 y=Object.create;var t=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var a=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,n)=>{if(o&&typeof o=="object"||typeof o=="function")for(let c of a(o))!d.call(r,c)&&c!==e&&t(r,c,{get:()=>o[c],enumerable:!(n=m(o,c))||n.enumerable});return r};var p=(r,o,e)=>(e=r!=null?y(h(r)):{},C(o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e,r)),B=r=>C(t({},"__esModule",{value:!0}),r);var P={};g(P,{IconPersona:()=>u,default:()=>I});module.exports=B(P);var l=p(require("react"));var i=p(require("react")),s=({children:r,size:o=24,ariaLabel:e,color:n,ariaHidden:c=!0,style:f,...x})=>i.default.createElement("svg",{...x,"aria-hidden":c,role:c?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}},e&&!c&&i.default.createElement("title",null,e),r);var u=r=>l.default.createElement(s,{...r,ariaLabel:"persona, thanos-effect, remove-user, remove-account, blip"},l.default.createElement("path",{d:"M14.9016 3.24998C14.9016 3.74703 14.4986 4.14998 14.0016 4.14998C13.5045 4.14998 13.1016 3.74703 13.1016 3.24998C13.1016 2.75292 13.5045 2.34998 14.0016 2.34998C14.4986 2.34998 14.9016 2.75292 14.9016 3.24998Z",fill:"currentColor"}),l.default.createElement("circle",{cx:"14.0016",cy:"6.49998",r:"0.9",fill:"currentColor"}),l.default.createElement("circle",{cx:"17",cy:"5",r:"0.75",fill:"currentColor"}),l.default.createElement("circle",{cx:"17",cy:"8",r:"0.75",fill:"currentColor"}),l.default.createElement("circle",{cx:"14.0016",cy:"9.74998",r:"0.9",fill:"currentColor"}),l.default.createElement("circle",{cx:"14.0016",cy:"13",r:"0.9",fill:"currentColor"}),l.default.createElement("circle",{cx:"17",cy:"13",r:"0.75",fill:"currentColor"}),l.default.createElement("circle",{cx:"20",cy:"16.5",r:"0.75",fill:"currentColor"}),l.default.createElement("circle",{cx:"14.0016",cy:"16.5",r:"0.9",fill:"currentColor"}),l.default.createElement("circle",{cx:"17.0016",cy:"16.5",r:"0.9",fill:"currentColor"}),l.default.createElement("circle",{cx:"14.0016",cy:"20",r:"0.9",fill:"currentColor"}),l.default.createElement("circle",{cx:"17.0016",cy:"20",r:"0.9",fill:"currentColor"}),l.default.createElement("circle",{cx:"20.0016",cy:"20",r:"0.9",fill:"currentColor"}),l.default.createElement("path",{d:"M12 10.25C9.92893 10.25 8.25 8.57107 8.25 6.5C8.25 4.42893 9.92893 2.75 12 2.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"}),l.default.createElement("path",{d:"M12 13.25C7.8098 13.25 4.86894 16.3254 4.5 20.25H12",stroke:"currentColor",strokeWidth:"1.5"})),I=u;0&&(module.exports={IconPersona});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPersona/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPersona: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"persona, thanos-effect, remove-user, remove-account, blip\"\n >\n <path\n d=\"M14.9016 3.24998C14.9016 3.74703 14.4986 4.14998 14.0016 4.14998C13.5045 4.14998 13.1016 3.74703 13.1016 3.24998C13.1016 2.75292 13.5045 2.34998 14.0016 2.34998C14.4986 2.34998 14.9016 2.75292 14.9016 3.24998Z\"\n fill=\"currentColor\"\n />\n <circle cx=\"14.0016\" cy=\"6.49998\" r=\"0.9\" fill=\"currentColor\" />\n <circle cx=\"17\" cy=\"5\" r=\"0.75\" fill=\"currentColor\" />\n <circle cx=\"17\" cy=\"8\" r=\"0.75\" fill=\"currentColor\" />\n <circle cx=\"14.0016\" cy=\"9.74998\" r=\"0.9\" fill=\"currentColor\" />\n <circle cx=\"14.0016\" cy=\"13\" r=\"0.9\" fill=\"currentColor\" />\n <circle cx=\"17\" cy=\"13\" r=\"0.75\" fill=\"currentColor\" />\n <circle cx=\"20\" cy=\"16.5\" r=\"0.75\" fill=\"currentColor\" />\n <circle cx=\"14.0016\" cy=\"16.5\" r=\"0.9\" fill=\"currentColor\" />\n <circle cx=\"17.0016\" cy=\"16.5\" r=\"0.9\" fill=\"currentColor\" />\n <circle cx=\"14.0016\" cy=\"20\" r=\"0.9\" fill=\"currentColor\" />\n <circle cx=\"17.0016\" cy=\"20\" r=\"0.9\" fill=\"currentColor\" />\n <circle cx=\"20.0016\" cy=\"20\" r=\"0.9\" fill=\"currentColor\" />\n <path\n d=\"M12 10.25C9.92893 10.25 8.25 8.57107 8.25 6.5C8.25 4.42893 9.92893 2.75 12 2.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M12 13.25C7.8098 13.25 4.86894 16.3254 4.5 20.25H12\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPersona;\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,iBAAAE,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,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,6DAEV,EAAAC,QAAA,cAAC,QACC,EAAE,oNACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9D,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,IAAI,EAAE,OAAO,KAAK,eAAe,EACpD,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,IAAI,EAAE,OAAO,KAAK,eAAe,EACpD,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,KAAK,EAAE,MAAM,KAAK,eAAe,EACzD,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAe,EACrD,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,OAAO,EAAE,OAAO,KAAK,eAAe,EACvD,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,OAAO,EAAE,MAAM,KAAK,eAAe,EAC3D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,OAAO,EAAE,MAAM,KAAK,eAAe,EAC3D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,KAAK,EAAE,MAAM,KAAK,eAAe,EACzD,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,KAAK,EAAE,MAAM,KAAK,eAAe,EACzD,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,KAAK,EAAE,MAAM,KAAK,eAAe,EACzD,EAAAA,QAAA,cAAC,QACC,EAAE,kFACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sDACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["IconPersona_exports","__export","IconPersona","IconPersona_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconPersona","props","React","CentralIconBase","IconPersona_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import n from"react";var t=({children:l,size:o=24,ariaLabel:c,color:i,ariaHidden:e=!0,style:C,...p})=>n.createElement("svg",{...p,"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:i,...C}},c&&!e&&n.createElement("title",null,c),l);var s=l=>r.createElement(t,{...l,ariaLabel:"persona, thanos-effect, remove-user, remove-account, blip"},r.createElement("path",{d:"M14.9016 3.24998C14.9016 3.74703 14.4986 4.14998 14.0016 4.14998C13.5045 4.14998 13.1016 3.74703 13.1016 3.24998C13.1016 2.75292 13.5045 2.34998 14.0016 2.34998C14.4986 2.34998 14.9016 2.75292 14.9016 3.24998Z",fill:"currentColor"}),r.createElement("circle",{cx:"14.0016",cy:"6.49998",r:"0.9",fill:"currentColor"}),r.createElement("circle",{cx:"17",cy:"5",r:"0.75",fill:"currentColor"}),r.createElement("circle",{cx:"17",cy:"8",r:"0.75",fill:"currentColor"}),r.createElement("circle",{cx:"14.0016",cy:"9.74998",r:"0.9",fill:"currentColor"}),r.createElement("circle",{cx:"14.0016",cy:"13",r:"0.9",fill:"currentColor"}),r.createElement("circle",{cx:"17",cy:"13",r:"0.75",fill:"currentColor"}),r.createElement("circle",{cx:"20",cy:"16.5",r:"0.75",fill:"currentColor"}),r.createElement("circle",{cx:"14.0016",cy:"16.5",r:"0.9",fill:"currentColor"}),r.createElement("circle",{cx:"17.0016",cy:"16.5",r:"0.9",fill:"currentColor"}),r.createElement("circle",{cx:"14.0016",cy:"20",r:"0.9",fill:"currentColor"}),r.createElement("circle",{cx:"17.0016",cy:"20",r:"0.9",fill:"currentColor"}),r.createElement("circle",{cx:"20.0016",cy:"20",r:"0.9",fill:"currentColor"}),r.createElement("path",{d:"M12 10.25C9.92893 10.25 8.25 8.57107 8.25 6.5C8.25 4.42893 9.92893 2.75 12 2.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"}),r.createElement("path",{d:"M12 13.25C7.8098 13.25 4.86894 16.3254 4.5 20.25H12",stroke:"currentColor",strokeWidth:"1.5"})),m=s;export{s as IconPersona,m as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPersona/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPersona: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"persona, thanos-effect, remove-user, remove-account, blip\"\n >\n <path\n d=\"M14.9016 3.24998C14.9016 3.74703 14.4986 4.14998 14.0016 4.14998C13.5045 4.14998 13.1016 3.74703 13.1016 3.24998C13.1016 2.75292 13.5045 2.34998 14.0016 2.34998C14.4986 2.34998 14.9016 2.75292 14.9016 3.24998Z\"\n fill=\"currentColor\"\n />\n <circle cx=\"14.0016\" cy=\"6.49998\" r=\"0.9\" fill=\"currentColor\" />\n <circle cx=\"17\" cy=\"5\" r=\"0.75\" fill=\"currentColor\" />\n <circle cx=\"17\" cy=\"8\" r=\"0.75\" fill=\"currentColor\" />\n <circle cx=\"14.0016\" cy=\"9.74998\" r=\"0.9\" fill=\"currentColor\" />\n <circle cx=\"14.0016\" cy=\"13\" r=\"0.9\" fill=\"currentColor\" />\n <circle cx=\"17\" cy=\"13\" r=\"0.75\" fill=\"currentColor\" />\n <circle cx=\"20\" cy=\"16.5\" r=\"0.75\" fill=\"currentColor\" />\n <circle cx=\"14.0016\" cy=\"16.5\" r=\"0.9\" fill=\"currentColor\" />\n <circle cx=\"17.0016\" cy=\"16.5\" r=\"0.9\" fill=\"currentColor\" />\n <circle cx=\"14.0016\" cy=\"20\" r=\"0.9\" fill=\"currentColor\" />\n <circle cx=\"17.0016\" cy=\"20\" r=\"0.9\" fill=\"currentColor\" />\n <circle cx=\"20.0016\" cy=\"20\" r=\"0.9\" fill=\"currentColor\" />\n <path\n d=\"M12 10.25C9.92893 10.25 8.25 8.57107 8.25 6.5C8.25 4.42893 9.92893 2.75 12 2.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M12 13.25C7.8098 13.25 4.86894 16.3254 4.5 20.25H12\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPersona;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,6DAEVC,EAAA,cAAC,QACC,EAAE,oNACF,KAAK,eACP,EACAA,EAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9DA,EAAA,cAAC,UAAO,GAAG,KAAK,GAAG,IAAI,EAAE,OAAO,KAAK,eAAe,EACpDA,EAAA,cAAC,UAAO,GAAG,KAAK,GAAG,IAAI,EAAE,OAAO,KAAK,eAAe,EACpDA,EAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,EAC9DA,EAAA,cAAC,UAAO,GAAG,UAAU,GAAG,KAAK,EAAE,MAAM,KAAK,eAAe,EACzDA,EAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,KAAK,eAAe,EACrDA,EAAA,cAAC,UAAO,GAAG,KAAK,GAAG,OAAO,EAAE,OAAO,KAAK,eAAe,EACvDA,EAAA,cAAC,UAAO,GAAG,UAAU,GAAG,OAAO,EAAE,MAAM,KAAK,eAAe,EAC3DA,EAAA,cAAC,UAAO,GAAG,UAAU,GAAG,OAAO,EAAE,MAAM,KAAK,eAAe,EAC3DA,EAAA,cAAC,UAAO,GAAG,UAAU,GAAG,KAAK,EAAE,MAAM,KAAK,eAAe,EACzDA,EAAA,cAAC,UAAO,GAAG,UAAU,GAAG,KAAK,EAAE,MAAM,KAAK,eAAe,EACzDA,EAAA,cAAC,UAAO,GAAG,UAAU,GAAG,KAAK,EAAE,MAAM,KAAK,eAAe,EACzDA,EAAA,cAAC,QACC,EAAE,kFACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,sDACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPersona","props","React","CentralIconBase","IconPersona_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var h=Object.create;var a=Object.defineProperty;var C=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var x=(r,e)=>{for(var t in e)a(r,t,{get:e[t],enumerable:!0})},l=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of m(e))!f.call(r,o)&&o!==t&&a(r,o,{get:()=>e[o],enumerable:!(n=C(e,o))||n.enumerable});return r};var i=(r,e,t)=>(t=r!=null?h(L(r)):{},l(e||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t,r)),V=r=>l(a({},"__esModule",{value:!0}),r);var B={};x(B,{IconScanTextSparkle:()=>u,default:()=>g});module.exports=V(B);var s=i(require("react"));var p=i(require("react")),c=({children:r,size:e=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:k,...d})=>p.default.createElement("svg",{...d,"aria-hidden":o,role:o?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:n,...k}},t&&!o&&p.default.createElement("title",null,t),r);var u=r=>s.default.createElement(c,{...r,ariaLabel:"scan-text-sparkle, scan, arrows-all-sides,focus, list"},s.default.createElement("path",{d:"M8.25 3.75H3.75V8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.default.createElement("path",{d:"M15.75 3.75H20.25V8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.default.createElement("path",{d:"M8.25 20.25H3.75V15.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.default.createElement("path",{d:"M8.75 9.75H15.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.default.createElement("path",{d:"M8.75 14.25H13.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.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=u;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\n d=\"M8.25 3.75H3.75V8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M15.75 3.75H20.25V8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.25 20.25H3.75V15.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.75 9.75H15.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.75 14.25H13.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\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,QACC,EAAE,uBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,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 a=({children:t,size:e=24,ariaLabel:s,color:p,ariaHidden:o=!0,style:l,...i})=>n.createElement("svg",{...i,"aria-hidden":o,role:o?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}},s&&!o&&n.createElement("title",null,s),t);var c=t=>r.createElement(a,{...t,ariaLabel:"scan-text-sparkle, scan, arrows-all-sides,focus, list"},r.createElement("path",{d:"M8.25 3.75H3.75V8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M15.75 3.75H20.25V8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M8.25 20.25H3.75V15.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M8.75 9.75H15.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M8.75 14.25H13.25",stroke:"currentColor",strokeWidth:"1.5",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"})),C=c;export{c as IconScanTextSparkle,C 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\n d=\"M8.25 3.75H3.75V8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M15.75 3.75H20.25V8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.25 20.25H3.75V15.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.75 9.75H15.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.75 14.25H13.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\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,QACC,EAAE,uBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,oBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,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
|
|
@@ -1201,6 +1203,7 @@ Below is a complete list of available icons:
|
|
|
1201
1203
|
- IconPeopleRemove
|
|
1202
1204
|
- IconPeopleRemove2
|
|
1203
1205
|
- IconPeopleVersus
|
|
1206
|
+
- IconPersona
|
|
1204
1207
|
- IconSteveJobs
|
|
1205
1208
|
- IconStreaming
|
|
1206
1209
|
- IconSurfing
|
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"
|
|
@@ -1107,6 +1108,7 @@ export type CentralIconName =
|
|
|
1107
1108
|
| "IconPeopleVersus"
|
|
1108
1109
|
| "IconPercent"
|
|
1109
1110
|
| "IconPerplexity"
|
|
1111
|
+
| "IconPersona"
|
|
1110
1112
|
| "IconPets"
|
|
1111
1113
|
| "IconPhone"
|
|
1112
1114
|
| "IconPhoneDynamicIsland"
|
|
@@ -1236,6 +1238,7 @@ export type CentralIconName =
|
|
|
1236
1238
|
| "IconSandbox"
|
|
1237
1239
|
| "IconSatellite1"
|
|
1238
1240
|
| "IconSatellite2"
|
|
1241
|
+
| "IconScanTextSparkle"
|
|
1239
1242
|
| "IconSchool"
|
|
1240
1243
|
| "IconScissors1"
|
|
1241
1244
|
| "IconScissors2"
|