@central-icons-react/square-outlined-radius-0-stroke-1 1.1.76 → 1.1.77
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/IconArrowLeftSquare/index.d.ts +4 -0
- package/IconArrowLeftSquare/index.js +2 -0
- package/IconArrowLeftSquare/index.js.map +1 -0
- package/IconArrowLeftSquare/index.mjs +2 -0
- package/IconArrowLeftSquare/index.mjs.map +1 -0
- package/IconArrowRightSquare/index.d.ts +4 -0
- package/IconArrowRightSquare/index.js +2 -0
- package/IconArrowRightSquare/index.js.map +1 -0
- package/IconArrowRightSquare/index.mjs +2 -0
- package/IconArrowRightSquare/index.mjs.map +1 -0
- package/IconArrowUpSquare/index.d.ts +4 -0
- package/IconArrowUpSquare/index.js +2 -0
- package/IconArrowUpSquare/index.js.map +1 -0
- package/IconArrowUpSquare/index.mjs +2 -0
- package/IconArrowUpSquare/index.mjs.map +1 -0
- package/IconClapboard/index.d.ts +4 -0
- package/IconClapboard/index.js +2 -0
- package/IconClapboard/index.js.map +1 -0
- package/IconClapboard/index.mjs +2 -0
- package/IconClapboard/index.mjs.map +1 -0
- package/IconClapboardWide/index.d.ts +4 -0
- package/IconClapboardWide/index.js +2 -0
- package/IconClapboardWide/index.js.map +1 -0
- package/IconClapboardWide/index.mjs +2 -0
- package/IconClapboardWide/index.mjs.map +1 -0
- package/IconRadar/index.js +1 -1
- package/IconRadar/index.js.map +1 -1
- package/IconRadar/index.mjs +1 -1
- package/IconRadar/index.mjs.map +1 -1
- package/IconRadar1/index.d.ts +4 -0
- package/IconRadar1/index.js +2 -0
- package/IconRadar1/index.js.map +1 -0
- package/IconRadar1/index.mjs +2 -0
- package/IconRadar1/index.mjs.map +1 -0
- package/IconRedirectArrow/index.d.ts +4 -0
- package/IconRedirectArrow/index.js +2 -0
- package/IconRedirectArrow/index.js.map +1 -0
- package/IconRedirectArrow/index.mjs +2 -0
- package/IconRedirectArrow/index.mjs.map +1 -0
- package/README.md +8 -1
- package/icons/index.d.ts +7 -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 +21 -7
- package/index.d.ts +25 -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 f=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var w=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,e)=>{for(var t in e)p(r,t,{get:e[t],enumerable:!0})},l=(r,e,t,a)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of h(e))!x.call(r,o)&&o!==t&&p(r,o,{get:()=>e[o],enumerable:!(a=g(e,o))||a.enumerable});return r};var u=(r,e,t)=>(t=r!=null?f(w(r)):{},l(e||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>l(p({},"__esModule",{value:!0}),r);var y={};B(y,{IconArrowLeftSquare:()=>m,default:()=>d});module.exports=I(y);var n=u(require("react"));var s=u(require("react")),c=({children:r,size:e=24,ariaLabel:t,color:a,ariaHidden:o=!0,style:i,...C})=>s.default.createElement("svg",{...C,"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:a,...i}},t&&!o&&s.default.createElement("title",null,t),r);var m=r=>n.default.createElement(c,{...r,ariaLabel:"arrow-left-square"},n.default.createElement("path",{d:"M20.5 3.5H3.5V20.5H20.5V3.5Z",stroke:"currentColor"}),n.default.createElement("path",{d:"M11 15.5L7.5 12L11 8.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M16.5 12H8",stroke:"currentColor",strokeLinecap:"square"})),d=m;0&&(module.exports={IconArrowLeftSquare});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowLeftSquare/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowLeftSquare: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-left-square\">\n <path d=\"M20.5 3.5H3.5V20.5H20.5V3.5Z\" stroke=\"currentColor\" />\n <path\n d=\"M11 15.5L7.5 12L11 8.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M16.5 12H8\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowLeftSquare;\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,CAAiB,GAAGF,EAAO,UAAU,qBACpC,EAAAC,QAAA,cAAC,QAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7D,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,cAAc,SAAS,CACpE,EAIGE,EAAQJ","names":["IconArrowLeftSquare_exports","__export","IconArrowLeftSquare","IconArrowLeftSquare_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowLeftSquare","props","React","CentralIconBase","IconArrowLeftSquare_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import a from"react";var p=({children:t,size:r=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:l,...u})=>a.createElement("svg",{...u,"aria-hidden":o,role:o?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...l}},n&&!o&&a.createElement("title",null,n),t);var c=t=>e.createElement(p,{...t,ariaLabel:"arrow-left-square"},e.createElement("path",{d:"M20.5 3.5H3.5V20.5H20.5V3.5Z",stroke:"currentColor"}),e.createElement("path",{d:"M11 15.5L7.5 12L11 8.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M16.5 12H8",stroke:"currentColor",strokeLinecap:"square"})),g=c;export{c as IconArrowLeftSquare,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowLeftSquare/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowLeftSquare: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-left-square\">\n <path d=\"M20.5 3.5H3.5V20.5H20.5V3.5Z\" stroke=\"currentColor\" />\n <path\n d=\"M11 15.5L7.5 12L11 8.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M16.5 12H8\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowLeftSquare;\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,CAAiB,GAAGF,EAAO,UAAU,qBACpCC,EAAA,cAAC,QAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7DA,EAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,cAAc,SAAS,CACpE,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowLeftSquare","props","React","CentralIconBase","IconArrowLeftSquare_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var g=Object.create;var p=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var w=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,e)=>{for(var t in e)p(r,t,{get:e[t],enumerable:!0})},l=(r,e,t,a)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of f(e))!x.call(r,o)&&o!==t&&p(r,o,{get:()=>e[o],enumerable:!(a=h(e,o))||a.enumerable});return r};var i=(r,e,t)=>(t=r!=null?g(w(r)):{},l(e||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>l(p({},"__esModule",{value:!0}),r);var y={};B(y,{IconArrowRightSquare:()=>c,default:()=>d});module.exports=I(y);var n=i(require("react"));var s=i(require("react")),u=({children:r,size:e=24,ariaLabel:t,color:a,ariaHidden:o=!0,style:m,...C})=>s.default.createElement("svg",{...C,"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:a,...m}},t&&!o&&s.default.createElement("title",null,t),r);var c=r=>n.default.createElement(u,{...r,ariaLabel:"arrow-right-square"},n.default.createElement("path",{d:"M20.5 3.5H3.5V20.5H20.5V3.5Z",stroke:"currentColor"}),n.default.createElement("path",{d:"M13 8.5L16.5 12L13 15.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M7.5 12H16",stroke:"currentColor",strokeLinecap:"square"})),d=c;0&&(module.exports={IconArrowRightSquare});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowRightSquare/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowRightSquare: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-right-square\">\n <path d=\"M20.5 3.5H3.5V20.5H20.5V3.5Z\" stroke=\"currentColor\" />\n <path\n d=\"M13 8.5L16.5 12L13 15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M7.5 12H16\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowRightSquare;\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,CAAiB,GAAGF,EAAO,UAAU,sBACpC,EAAAC,QAAA,cAAC,QAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7D,EAAAA,QAAA,cAAC,QACC,EAAE,0BACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,cAAc,SAAS,CACpE,EAIGE,EAAQJ","names":["IconArrowRightSquare_exports","__export","IconArrowRightSquare","IconArrowRightSquare_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowRightSquare","props","React","CentralIconBase","IconArrowRightSquare_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import a from"react";var p=({children:t,size:r=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:l,...i})=>a.createElement("svg",{...i,"aria-hidden":o,role:o?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...l}},n&&!o&&a.createElement("title",null,n),t);var u=t=>e.createElement(p,{...t,ariaLabel:"arrow-right-square"},e.createElement("path",{d:"M20.5 3.5H3.5V20.5H20.5V3.5Z",stroke:"currentColor"}),e.createElement("path",{d:"M13 8.5L16.5 12L13 15.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M7.5 12H16",stroke:"currentColor",strokeLinecap:"square"})),h=u;export{u as IconArrowRightSquare,h as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowRightSquare/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowRightSquare: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-right-square\">\n <path d=\"M20.5 3.5H3.5V20.5H20.5V3.5Z\" stroke=\"currentColor\" />\n <path\n d=\"M13 8.5L16.5 12L13 15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M7.5 12H16\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowRightSquare;\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,CAAiB,GAAGF,EAAO,UAAU,sBACpCC,EAAA,cAAC,QAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7DA,EAAA,cAAC,QACC,EAAE,0BACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,cAAc,SAAS,CACpE,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowRightSquare","props","React","CentralIconBase","IconArrowRightSquare_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var a=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var w=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,e)=>{for(var o in e)a(r,o,{get:e[o],enumerable:!0})},l=(r,e,o,p)=>{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:!(p=g(e,t))||p.enumerable});return r};var u=(r,e,o)=>(o=r!=null?f(w(r)):{},l(e||!r||!r.__esModule?a(o,"default",{value:r,enumerable:!0}):o,r)),I=r=>l(a({},"__esModule",{value:!0}),r);var V={};B(V,{IconArrowUpSquare:()=>m,default:()=>d});module.exports=I(V);var n=u(require("react"));var s=u(require("react")),c=({children:r,size:e=24,ariaLabel:o,color:p,ariaHidden:t=!0,style:i,...C})=>s.default.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,...i}},o&&!t&&s.default.createElement("title",null,o),r);var m=r=>n.default.createElement(c,{...r,ariaLabel:"arrow-up-square, top"},n.default.createElement("path",{d:"M20.5 3.5H3.5V20.5H20.5V3.5Z",stroke:"currentColor"}),n.default.createElement("path",{d:"M12 16.5V8",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M8.5 11L12 7.5L15.5 11",stroke:"currentColor",strokeLinecap:"square"})),d=m;0&&(module.exports={IconArrowUpSquare});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowUpSquare/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowUpSquare: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-up-square, top\">\n <path d=\"M20.5 3.5H3.5V20.5H20.5V3.5Z\" stroke=\"currentColor\" />\n <path d=\"M12 16.5V8\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M8.5 11L12 7.5L15.5 11\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowUpSquare;\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,uBAAAE,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,EAAqDC,GAE9D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpC,EAAAC,QAAA,cAAC,QAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7D,EAAAA,QAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,cAAc,SAAS,EAClE,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconArrowUpSquare_exports","__export","IconArrowUpSquare","IconArrowUpSquare_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconArrowUpSquare","props","React","CentralIconBase","IconArrowUpSquare_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";var a=({children:o,size:r=24,ariaLabel:n,color:s,ariaHidden:t=!0,style:l,...u})=>p.createElement("svg",{...u,"aria-hidden":t,role:t?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...l}},n&&!t&&p.createElement("title",null,n),o);var c=o=>e.createElement(a,{...o,ariaLabel:"arrow-up-square, top"},e.createElement("path",{d:"M20.5 3.5H3.5V20.5H20.5V3.5Z",stroke:"currentColor"}),e.createElement("path",{d:"M12 16.5V8",stroke:"currentColor",strokeLinecap:"square"}),e.createElement("path",{d:"M8.5 11L12 7.5L15.5 11",stroke:"currentColor",strokeLinecap:"square"})),g=c;export{c as IconArrowUpSquare,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconArrowUpSquare/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowUpSquare: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"arrow-up-square, top\">\n <path d=\"M20.5 3.5H3.5V20.5H20.5V3.5Z\" stroke=\"currentColor\" />\n <path d=\"M12 16.5V8\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M8.5 11L12 7.5L15.5 11\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowUpSquare;\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,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpCC,EAAA,cAAC,QAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7DA,EAAA,cAAC,QAAK,EAAE,aAAa,OAAO,eAAe,cAAc,SAAS,EAClEA,EAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowUpSquare","props","React","CentralIconBase","IconArrowUpSquare_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var a=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var t in o)a(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of h(o))!x.call(r,e)&&e!==t&&a(r,e,{get:()=>o[e],enumerable:!(p=f(o,e))||p.enumerable});return r};var m=(r,o,t)=>(t=r!=null?d(g(r)):{},s(o||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>s(a({},"__esModule",{value:!0}),r);var w={};B(w,{IconClapboard:()=>c,default:()=>b});module.exports=I(w);var n=m(require("react"));var l=m(require("react")),C=({children:r,size:o=24,ariaLabel:t,color:p,ariaHidden:e=!0,style:i,...u})=>l.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:p,...i}},t&&!e&&l.default.createElement("title",null,t),r);var c=r=>n.default.createElement(C,{...r,ariaLabel:"clapboard, movie, film"},n.default.createElement("path",{d:"M20.5 3.5H3.5V20.5H20.5V3.5Z",stroke:"currentColor"}),n.default.createElement("path",{d:"M3.5 8.5H20.5",stroke:"currentColor"}),n.default.createElement("path",{d:"M8.25 8.5L10.25 3.5",stroke:"currentColor"}),n.default.createElement("path",{d:"M13.75 8.5L15.75 3.5",stroke:"currentColor"})),b=c;0&&(module.exports={IconClapboard});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconClapboard/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconClapboard: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"clapboard, movie, film\">\n <path d=\"M20.5 3.5H3.5V20.5H20.5V3.5Z\" stroke=\"currentColor\" />\n <path d=\"M3.5 8.5H20.5\" stroke=\"currentColor\" />\n <path d=\"M8.25 8.5L10.25 3.5\" stroke=\"currentColor\" />\n <path d=\"M13.75 8.5L15.75 3.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconClapboard;\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,mBAAAE,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,EAAiDC,GAE1D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,0BACpC,EAAAC,QAAA,cAAC,QAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7D,EAAAA,QAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,EAC9C,EAAAA,QAAA,cAAC,QAAK,EAAE,sBAAsB,OAAO,eAAe,EACpD,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,CACvD,EAIGE,EAAQJ","names":["IconClapboard_exports","__export","IconClapboard","IconClapboard_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconClapboard","props","React","CentralIconBase","IconClapboard_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";var a=({children:t,size:r=24,ariaLabel:n,color:l,ariaHidden:e=!0,style:s,...m})=>p.createElement("svg",{...m,"aria-hidden":e,role:e?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...s}},n&&!e&&p.createElement("title",null,n),t);var C=t=>o.createElement(a,{...t,ariaLabel:"clapboard, movie, film"},o.createElement("path",{d:"M20.5 3.5H3.5V20.5H20.5V3.5Z",stroke:"currentColor"}),o.createElement("path",{d:"M3.5 8.5H20.5",stroke:"currentColor"}),o.createElement("path",{d:"M8.25 8.5L10.25 3.5",stroke:"currentColor"}),o.createElement("path",{d:"M13.75 8.5L15.75 3.5",stroke:"currentColor"})),f=C;export{C as IconClapboard,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconClapboard/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconClapboard: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"clapboard, movie, film\">\n <path d=\"M20.5 3.5H3.5V20.5H20.5V3.5Z\" stroke=\"currentColor\" />\n <path d=\"M3.5 8.5H20.5\" stroke=\"currentColor\" />\n <path d=\"M8.25 8.5L10.25 3.5\" stroke=\"currentColor\" />\n <path d=\"M13.75 8.5L15.75 3.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconClapboard;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,0BACpCC,EAAA,cAAC,QAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7DA,EAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,EAC9CA,EAAA,cAAC,QAAK,EAAE,sBAAsB,OAAO,eAAe,EACpDA,EAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,CACvD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconClapboard","props","React","CentralIconBase","IconClapboard_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var a=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)a(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of h(o))!x.call(r,t)&&t!==e&&a(r,t,{get:()=>o[t],enumerable:!(p=f(o,t))||p.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(g(r)):{},s(o||!r||!r.__esModule?a(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>s(a({},"__esModule",{value:!0}),r);var w={};B(w,{IconClapboardWide:()=>C,default:()=>b});module.exports=I(w);var n=m(require("react"));var l=m(require("react")),i=({children:r,size:o=24,ariaLabel:e,color:p,ariaHidden:t=!0,style:c,...d})=>l.default.createElement("svg",{...d,"aria-hidden":t,role:t?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:p,...c}},e&&!t&&l.default.createElement("title",null,e),r);var C=r=>n.default.createElement(i,{...r,ariaLabel:"clapboard-wide, movie, film"},n.default.createElement("path",{d:"M21.5 4.5H2.5V19.5H21.5V4.5Z",stroke:"currentColor"}),n.default.createElement("path",{d:"M2.5 9.5H21.5",stroke:"currentColor"}),n.default.createElement("path",{d:"M7.75 9.5L9.75 4.5",stroke:"currentColor"}),n.default.createElement("path",{d:"M14.25 9.5L16.25 4.5",stroke:"currentColor"})),b=C;0&&(module.exports={IconClapboardWide});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconClapboardWide/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconClapboardWide: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"clapboard-wide, movie, film\">\n <path d=\"M21.5 4.5H2.5V19.5H21.5V4.5Z\" stroke=\"currentColor\" />\n <path d=\"M2.5 9.5H21.5\" stroke=\"currentColor\" />\n <path d=\"M7.75 9.5L9.75 4.5\" stroke=\"currentColor\" />\n <path d=\"M14.25 9.5L16.25 4.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconClapboardWide;\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,uBAAAE,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,EAAqDC,GAE9D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,+BACpC,EAAAC,QAAA,cAAC,QAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7D,EAAAA,QAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,EAC9C,EAAAA,QAAA,cAAC,QAAK,EAAE,qBAAqB,OAAO,eAAe,EACnD,EAAAA,QAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,CACvD,EAIGE,EAAQJ","names":["IconClapboardWide_exports","__export","IconClapboardWide","IconClapboardWide_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconClapboardWide","props","React","CentralIconBase","IconClapboardWide_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";var a=({children:e,size:r=24,ariaLabel:n,color:l,ariaHidden:t=!0,style:s,...m})=>p.createElement("svg",{...m,"aria-hidden":t,role:t?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...s}},n&&!t&&p.createElement("title",null,n),e);var i=e=>o.createElement(a,{...e,ariaLabel:"clapboard-wide, movie, film"},o.createElement("path",{d:"M21.5 4.5H2.5V19.5H21.5V4.5Z",stroke:"currentColor"}),o.createElement("path",{d:"M2.5 9.5H21.5",stroke:"currentColor"}),o.createElement("path",{d:"M7.75 9.5L9.75 4.5",stroke:"currentColor"}),o.createElement("path",{d:"M14.25 9.5L16.25 4.5",stroke:"currentColor"})),f=i;export{i as IconClapboardWide,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconClapboardWide/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconClapboardWide: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"clapboard-wide, movie, film\">\n <path d=\"M21.5 4.5H2.5V19.5H21.5V4.5Z\" stroke=\"currentColor\" />\n <path d=\"M2.5 9.5H21.5\" stroke=\"currentColor\" />\n <path d=\"M7.75 9.5L9.75 4.5\" stroke=\"currentColor\" />\n <path d=\"M14.25 9.5L16.25 4.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconClapboardWide;\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,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,+BACpCC,EAAA,cAAC,QAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7DA,EAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,EAC9CA,EAAA,cAAC,QAAK,EAAE,qBAAqB,OAAO,eAAe,EACnDA,EAAA,cAAC,QAAK,EAAE,uBAAuB,OAAO,eAAe,CACvD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconClapboardWide","props","React","CentralIconBase","IconClapboardWide_default"]}
|
package/IconRadar/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var f=Object.create;var p=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},s=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of h(o))!g.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(l=d(o,e))||l.enumerable});return r};var C=(r,o,t)=>(t=r!=null?f(x(r)):{},s(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>s(p({},"__esModule",{value:!0}),r);var w={};B(w,{IconRadar:()=>m,default:()=>y});module.exports=I(w);var n=C(require("react"));var a=C(require("react")),c=({children:r,size:o=24,ariaLabel:t,color:l,ariaHidden:e=!0,style:i,...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:l,...i}},t&&!e&&a.default.createElement("title",null,t),r);var m=r=>n.default.createElement(c,{...r,ariaLabel:"radar, control, check"},n.default.createElement("path",{d:"M18.7175 5.28249C15.0075 1.5725 8.99247 1.5725 5.28249 5.28249C1.5725 8.99247 1.5725 15.0075 5.28249 18.7175C8.99247 22.4275 15.0075 22.4275 18.7175 18.7175C21.3676 16.0674 22.1247 12.2411 20.9887 8.91892",stroke:"currentColor"}),n.default.createElement("path",{d:"M15.8891 8.11091C13.7412 5.96303 10.2588 5.96303 8.11091 8.11091C5.96303 10.2588 5.96303 13.7412 8.11091 15.8891C10.2588 18.037 13.7412 18.037 15.8891 15.8891C17.2308 14.5474 17.7344 12.685 17.3999 10.9524",stroke:"currentColor"}),n.default.createElement("path",{d:"M11.9863 11.9868L19.9995 4",stroke:"currentColor"}),n.default.createElement("circle",{cx:"11.9492",cy:"11.9482",r:"1.5",fill:"currentColor"})),y=m;0&&(module.exports={IconRadar});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconRadar/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconRadar/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRadar: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"radar,
|
|
1
|
+
{"version":3,"sources":["../src/IconRadar/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRadar: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"radar, control, check\">\n <path\n d=\"M18.7175 5.28249C15.0075 1.5725 8.99247 1.5725 5.28249 5.28249C1.5725 8.99247 1.5725 15.0075 5.28249 18.7175C8.99247 22.4275 15.0075 22.4275 18.7175 18.7175C21.3676 16.0674 22.1247 12.2411 20.9887 8.91892\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M15.8891 8.11091C13.7412 5.96303 10.2588 5.96303 8.11091 8.11091C5.96303 10.2588 5.96303 13.7412 8.11091 15.8891C10.2588 18.037 13.7412 18.037 15.8891 15.8891C17.2308 14.5474 17.7344 12.685 17.3999 10.9524\"\n stroke=\"currentColor\"\n />\n <path d=\"M11.9863 11.9868L19.9995 4\" stroke=\"currentColor\" />\n <circle cx=\"11.9492\" cy=\"11.9482\" r=\"1.5\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconRadar;\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,eAAAE,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,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,yBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,+MACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gNACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,6BAA6B,OAAO,eAAe,EAC3D,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,CAChE,EAIGE,EAAQJ","names":["IconRadar_exports","__export","IconRadar","IconRadar_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconRadar","props","React","CentralIconBase","IconRadar_default"]}
|
package/IconRadar/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import
|
|
1
|
+
import o from"react";import l from"react";var p=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:s,...C})=>l.createElement("svg",{...C,"aria-hidden":e,role:e?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...s}},n&&!e&&l.createElement("title",null,n),t);var c=t=>o.createElement(p,{...t,ariaLabel:"radar, control, check"},o.createElement("path",{d:"M18.7175 5.28249C15.0075 1.5725 8.99247 1.5725 5.28249 5.28249C1.5725 8.99247 1.5725 15.0075 5.28249 18.7175C8.99247 22.4275 15.0075 22.4275 18.7175 18.7175C21.3676 16.0674 22.1247 12.2411 20.9887 8.91892",stroke:"currentColor"}),o.createElement("path",{d:"M15.8891 8.11091C13.7412 5.96303 10.2588 5.96303 8.11091 8.11091C5.96303 10.2588 5.96303 13.7412 8.11091 15.8891C10.2588 18.037 13.7412 18.037 15.8891 15.8891C17.2308 14.5474 17.7344 12.685 17.3999 10.9524",stroke:"currentColor"}),o.createElement("path",{d:"M11.9863 11.9868L19.9995 4",stroke:"currentColor"}),o.createElement("circle",{cx:"11.9492",cy:"11.9482",r:"1.5",fill:"currentColor"})),d=c;export{c as IconRadar,d as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconRadar/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconRadar/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRadar: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"radar,
|
|
1
|
+
{"version":3,"sources":["../src/IconRadar/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRadar: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"radar, control, check\">\n <path\n d=\"M18.7175 5.28249C15.0075 1.5725 8.99247 1.5725 5.28249 5.28249C1.5725 8.99247 1.5725 15.0075 5.28249 18.7175C8.99247 22.4275 15.0075 22.4275 18.7175 18.7175C21.3676 16.0674 22.1247 12.2411 20.9887 8.91892\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M15.8891 8.11091C13.7412 5.96303 10.2588 5.96303 8.11091 8.11091C5.96303 10.2588 5.96303 13.7412 8.11091 15.8891C10.2588 18.037 13.7412 18.037 15.8891 15.8891C17.2308 14.5474 17.7344 12.685 17.3999 10.9524\"\n stroke=\"currentColor\"\n />\n <path d=\"M11.9863 11.9868L19.9995 4\" stroke=\"currentColor\" />\n <circle cx=\"11.9492\" cy=\"11.9482\" r=\"1.5\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconRadar;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,yBACpCC,EAAA,cAAC,QACC,EAAE,+MACF,OAAO,eACT,EACAA,EAAA,cAAC,QACC,EAAE,gNACF,OAAO,eACT,EACAA,EAAA,cAAC,QAAK,EAAE,6BAA6B,OAAO,eAAe,EAC3DA,EAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,CAChE,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRadar","props","React","CentralIconBase","IconRadar_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var m=Object.create;var n=Object.defineProperty;var V=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,H=Object.prototype.hasOwnProperty;var u=(r,t)=>{for(var e in t)n(r,e,{get:t[e],enumerable:!0})},p=(r,t,e,C)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of L(t))!H.call(r,o)&&o!==e&&n(r,o,{get:()=>t[o],enumerable:!(C=V(t,o))||C.enumerable});return r};var s=(r,t,e)=>(e=r!=null?m(f(r)):{},p(t||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>p(n({},"__esModule",{value:!0}),r);var h={};u(h,{IconRadar1:()=>Z,default:()=>g});module.exports=d(h);var a=s(require("react"));var l=s(require("react")),M=({children:r,size:t=24,ariaLabel:e,color:C,ariaHidden:o=!0,style:c,...i})=>l.default.createElement("svg",{...i,"aria-hidden":o,role:o?void 0:"img",width:typeof t=="number"?`${t}px`:t,height:typeof t=="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:C,...c}},e&&!o&&l.default.createElement("title",null,e),r);var Z=r=>a.default.createElement(M,{...r,ariaLabel:"radar, location, search"},a.default.createElement("path",{d:"M12 12.75C11.5858 12.75 11.25 12.4142 11.25 12C11.25 11.5858 11.5858 11.25 12 11.25C12.4142 11.25 12.75 11.5858 12.75 12C12.75 12.4142 12.4142 12.75 12 12.75Z",fill:"currentColor"}),a.default.createElement("path",{d:"M12 12.0003L11.5712 12.2575C11.6616 12.4081 11.8244 12.5003 12 12.5003C12.1756 12.5003 12.3384 12.4081 12.4287 12.2575L12 12.0003ZM6.68263 4.10982L11.5712 12.2575L12.4287 11.743L7.54013 3.59532L6.68263 4.10982ZM12.4287 12.2575L17.3174 4.10983L16.4599 3.59533L11.5712 11.743L12.4287 12.2575ZM12 21C7.02944 21 3 16.9706 3 12H2C2 17.5228 6.47715 22 12 22V21ZM3 12C3 7.02944 7.02944 3 12 3V2C6.47715 2 2 6.47715 2 12H3ZM12 3C16.9706 3 21 7.02944 21 12H22C22 6.47715 17.5228 2 12 2V3ZM21 12C21 16.9706 16.9706 21 12 21V22C17.5228 22 22 17.5228 22 12H21ZM12 16.9288C9.23858 16.9288 7 14.6903 7 11.9288H6C6 15.2425 8.68629 17.9288 12 17.9288V16.9288ZM17 11.9288C17 14.6903 14.7614 16.9288 12 16.9288V17.9288C15.3137 17.9288 18 15.2425 18 11.9288H17ZM14.5725 7.64042C16.028 8.51562 17 10.109 17 11.9288H18C18 9.74368 16.8316 7.83192 15.0878 6.78341L14.5725 7.64042ZM7 11.9288C7 10.109 7.97197 8.51562 9.4275 7.64042L8.91219 6.78341C7.16843 7.83192 6 9.74368 6 11.9288H7ZM12 12.25C11.8619 12.25 11.75 12.1381 11.75 12H10.75C10.75 12.6904 11.3096 13.25 12 13.25V12.25ZM11.75 12C11.75 11.8619 11.8619 11.75 12 11.75V10.75C11.3096 10.75 10.75 11.3096 10.75 12H11.75ZM12 11.75C12.1381 11.75 12.25 11.8619 12.25 12H13.25C13.25 11.3096 12.6904 10.75 12 10.75V11.75ZM12.25 12C12.25 12.1381 12.1381 12.25 12 12.25V13.25C12.6904 13.25 13.25 12.6904 13.25 12H12.25Z",fill:"currentColor"})),g=Z;0&&(module.exports={IconRadar1});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRadar1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRadar1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"radar, location, search\">\n <path\n d=\"M12 12.75C11.5858 12.75 11.25 12.4142 11.25 12C11.25 11.5858 11.5858 11.25 12 11.25C12.4142 11.25 12.75 11.5858 12.75 12C12.75 12.4142 12.4142 12.75 12 12.75Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12 12.0003L11.5712 12.2575C11.6616 12.4081 11.8244 12.5003 12 12.5003C12.1756 12.5003 12.3384 12.4081 12.4287 12.2575L12 12.0003ZM6.68263 4.10982L11.5712 12.2575L12.4287 11.743L7.54013 3.59532L6.68263 4.10982ZM12.4287 12.2575L17.3174 4.10983L16.4599 3.59533L11.5712 11.743L12.4287 12.2575ZM12 21C7.02944 21 3 16.9706 3 12H2C2 17.5228 6.47715 22 12 22V21ZM3 12C3 7.02944 7.02944 3 12 3V2C6.47715 2 2 6.47715 2 12H3ZM12 3C16.9706 3 21 7.02944 21 12H22C22 6.47715 17.5228 2 12 2V3ZM21 12C21 16.9706 16.9706 21 12 21V22C17.5228 22 22 17.5228 22 12H21ZM12 16.9288C9.23858 16.9288 7 14.6903 7 11.9288H6C6 15.2425 8.68629 17.9288 12 17.9288V16.9288ZM17 11.9288C17 14.6903 14.7614 16.9288 12 16.9288V17.9288C15.3137 17.9288 18 15.2425 18 11.9288H17ZM14.5725 7.64042C16.028 8.51562 17 10.109 17 11.9288H18C18 9.74368 16.8316 7.83192 15.0878 6.78341L14.5725 7.64042ZM7 11.9288C7 10.109 7.97197 8.51562 9.4275 7.64042L8.91219 6.78341C7.16843 7.83192 6 9.74368 6 11.9288H7ZM12 12.25C11.8619 12.25 11.75 12.1381 11.75 12H10.75C10.75 12.6904 11.3096 13.25 12 13.25V12.25ZM11.75 12C11.75 11.8619 11.8619 11.75 12 11.75V10.75C11.3096 10.75 10.75 11.3096 10.75 12H11.75ZM12 11.75C12.1381 11.75 12.25 11.8619 12.25 12H13.25C13.25 11.3096 12.6904 10.75 12 10.75V11.75ZM12.25 12C12.25 12.1381 12.1381 12.25 12 12.25V13.25C12.6904 13.25 13.25 12.6904 13.25 12H12.25Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRadar1;\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,gBAAAE,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,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,iKACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,q0CACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconRadar1_exports","__export","IconRadar1","IconRadar1_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconRadar1","props","React","CentralIconBase","IconRadar1_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import n from"react";var a=({children:t,size:r=24,ariaLabel:C,color:l,ariaHidden:e=!0,style:p,...s})=>n.createElement("svg",{...s,"aria-hidden":e,role:e?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...p}},C&&!e&&n.createElement("title",null,C),t);var M=t=>o.createElement(a,{...t,ariaLabel:"radar, location, search"},o.createElement("path",{d:"M12 12.75C11.5858 12.75 11.25 12.4142 11.25 12C11.25 11.5858 11.5858 11.25 12 11.25C12.4142 11.25 12.75 11.5858 12.75 12C12.75 12.4142 12.4142 12.75 12 12.75Z",fill:"currentColor"}),o.createElement("path",{d:"M12 12.0003L11.5712 12.2575C11.6616 12.4081 11.8244 12.5003 12 12.5003C12.1756 12.5003 12.3384 12.4081 12.4287 12.2575L12 12.0003ZM6.68263 4.10982L11.5712 12.2575L12.4287 11.743L7.54013 3.59532L6.68263 4.10982ZM12.4287 12.2575L17.3174 4.10983L16.4599 3.59533L11.5712 11.743L12.4287 12.2575ZM12 21C7.02944 21 3 16.9706 3 12H2C2 17.5228 6.47715 22 12 22V21ZM3 12C3 7.02944 7.02944 3 12 3V2C6.47715 2 2 6.47715 2 12H3ZM12 3C16.9706 3 21 7.02944 21 12H22C22 6.47715 17.5228 2 12 2V3ZM21 12C21 16.9706 16.9706 21 12 21V22C17.5228 22 22 17.5228 22 12H21ZM12 16.9288C9.23858 16.9288 7 14.6903 7 11.9288H6C6 15.2425 8.68629 17.9288 12 17.9288V16.9288ZM17 11.9288C17 14.6903 14.7614 16.9288 12 16.9288V17.9288C15.3137 17.9288 18 15.2425 18 11.9288H17ZM14.5725 7.64042C16.028 8.51562 17 10.109 17 11.9288H18C18 9.74368 16.8316 7.83192 15.0878 6.78341L14.5725 7.64042ZM7 11.9288C7 10.109 7.97197 8.51562 9.4275 7.64042L8.91219 6.78341C7.16843 7.83192 6 9.74368 6 11.9288H7ZM12 12.25C11.8619 12.25 11.75 12.1381 11.75 12H10.75C10.75 12.6904 11.3096 13.25 12 13.25V12.25ZM11.75 12C11.75 11.8619 11.8619 11.75 12 11.75V10.75C11.3096 10.75 10.75 11.3096 10.75 12H11.75ZM12 11.75C12.1381 11.75 12.25 11.8619 12.25 12H13.25C13.25 11.3096 12.6904 10.75 12 10.75V11.75ZM12.25 12C12.25 12.1381 12.1381 12.25 12 12.25V13.25C12.6904 13.25 13.25 12.6904 13.25 12H12.25Z",fill:"currentColor"})),V=M;export{M as IconRadar1,V as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRadar1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRadar1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"radar, location, search\">\n <path\n d=\"M12 12.75C11.5858 12.75 11.25 12.4142 11.25 12C11.25 11.5858 11.5858 11.25 12 11.25C12.4142 11.25 12.75 11.5858 12.75 12C12.75 12.4142 12.4142 12.75 12 12.75Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M12 12.0003L11.5712 12.2575C11.6616 12.4081 11.8244 12.5003 12 12.5003C12.1756 12.5003 12.3384 12.4081 12.4287 12.2575L12 12.0003ZM6.68263 4.10982L11.5712 12.2575L12.4287 11.743L7.54013 3.59532L6.68263 4.10982ZM12.4287 12.2575L17.3174 4.10983L16.4599 3.59533L11.5712 11.743L12.4287 12.2575ZM12 21C7.02944 21 3 16.9706 3 12H2C2 17.5228 6.47715 22 12 22V21ZM3 12C3 7.02944 7.02944 3 12 3V2C6.47715 2 2 6.47715 2 12H3ZM12 3C16.9706 3 21 7.02944 21 12H22C22 6.47715 17.5228 2 12 2V3ZM21 12C21 16.9706 16.9706 21 12 21V22C17.5228 22 22 17.5228 22 12H21ZM12 16.9288C9.23858 16.9288 7 14.6903 7 11.9288H6C6 15.2425 8.68629 17.9288 12 17.9288V16.9288ZM17 11.9288C17 14.6903 14.7614 16.9288 12 16.9288V17.9288C15.3137 17.9288 18 15.2425 18 11.9288H17ZM14.5725 7.64042C16.028 8.51562 17 10.109 17 11.9288H18C18 9.74368 16.8316 7.83192 15.0878 6.78341L14.5725 7.64042ZM7 11.9288C7 10.109 7.97197 8.51562 9.4275 7.64042L8.91219 6.78341C7.16843 7.83192 6 9.74368 6 11.9288H7ZM12 12.25C11.8619 12.25 11.75 12.1381 11.75 12H10.75C10.75 12.6904 11.3096 13.25 12 13.25V12.25ZM11.75 12C11.75 11.8619 11.8619 11.75 12 11.75V10.75C11.3096 10.75 10.75 11.3096 10.75 12H11.75ZM12 11.75C12.1381 11.75 12.25 11.8619 12.25 12H13.25C13.25 11.3096 12.6904 10.75 12 10.75V11.75ZM12.25 12C12.25 12.1381 12.1381 12.25 12 12.25V13.25C12.6904 13.25 13.25 12.6904 13.25 12H12.25Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRadar1;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpCC,EAAA,cAAC,QACC,EAAE,iKACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,q0CACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRadar1","props","React","CentralIconBase","IconRadar1_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var p=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var w=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,e)=>{for(var t in e)p(r,t,{get:e[t],enumerable:!0})},s=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of g(e))!x.call(r,o)&&o!==t&&p(r,o,{get:()=>e[o],enumerable:!(n=d(e,o))||n.enumerable});return r};var c=(r,e,t)=>(t=r!=null?f(w(r)):{},s(e||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>s(p({},"__esModule",{value:!0}),r);var y={};B(y,{IconRedirectArrow:()=>C,default:()=>h});module.exports=I(y);var a=c(require("react"));var l=c(require("react")),m=({children:r,size:e=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:i,...u})=>l.default.createElement("svg",{...u,"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,...i}},t&&!o&&l.default.createElement("title",null,t),r);var C=r=>a.default.createElement(m,{...r,ariaLabel:"redirect-arrow"},a.default.createElement("path",{d:"M12 20.9999V7.75C12 5.40279 10.0972 3.5 7.74997 3.5C5.40279 3.5 3.5 5.40277 3.5 7.74995C3.5 10.0971 5.40277 11.9999 7.74995 11.9999H20",stroke:"currentColor"}),a.default.createElement("path",{d:"M16.5 8L20.5 12L16.5 16",stroke:"currentColor"})),h=C;0&&(module.exports={IconRedirectArrow});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRedirectArrow/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRedirectArrow: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"redirect-arrow\">\n <path\n d=\"M12 20.9999V7.75C12 5.40279 10.0972 3.5 7.74997 3.5C5.40279 3.5 3.5 5.40277 3.5 7.74995C3.5 10.0971 5.40277 11.9999 7.74995 11.9999H20\"\n stroke=\"currentColor\"\n />\n <path d=\"M16.5 8L20.5 12L16.5 16\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconRedirectArrow;\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,uBAAAE,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,EAAqDC,GAE9D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,yIACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,0BAA0B,OAAO,eAAe,CAC1D,EAIGE,EAAQJ","names":["IconRedirectArrow_exports","__export","IconRedirectArrow","IconRedirectArrow_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconRedirectArrow","props","React","CentralIconBase","IconRedirectArrow_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";var a=({children:e,size:r=24,ariaLabel:n,color:l,ariaHidden:t=!0,style:s,...c})=>p.createElement("svg",{...c,"aria-hidden":t,role:t?void 0:"img",width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...s}},n&&!t&&p.createElement("title",null,n),e);var m=e=>o.createElement(a,{...e,ariaLabel:"redirect-arrow"},o.createElement("path",{d:"M12 20.9999V7.75C12 5.40279 10.0972 3.5 7.74997 3.5C5.40279 3.5 3.5 5.40277 3.5 7.74995C3.5 10.0971 5.40277 11.9999 7.74995 11.9999H20",stroke:"currentColor"}),o.createElement("path",{d:"M16.5 8L20.5 12L16.5 16",stroke:"currentColor"})),d=m;export{m as IconRedirectArrow,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRedirectArrow/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRedirectArrow: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"redirect-arrow\">\n <path\n d=\"M12 20.9999V7.75C12 5.40279 10.0972 3.5 7.74997 3.5C5.40279 3.5 3.5 5.40277 3.5 7.74995C3.5 10.0971 5.40277 11.9999 7.74995 11.9999H20\"\n stroke=\"currentColor\"\n />\n <path d=\"M16.5 8L20.5 12L16.5 16\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconRedirectArrow;\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,EAAqDC,GAE9DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kBACpCC,EAAA,cAAC,QACC,EAAE,yIACF,OAAO,eACT,EACAA,EAAA,cAAC,QAAK,EAAE,0BAA0B,OAAO,eAAe,CAC1D,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRedirectArrow","props","React","CentralIconBase","IconRedirectArrow_default"]}
|
package/README.md
CHANGED
|
@@ -278,6 +278,7 @@ Below is a complete list of available icons:
|
|
|
278
278
|
- IconArrowLeftCircle
|
|
279
279
|
- IconArrowLeftDownCircle
|
|
280
280
|
- IconArrowLeftRight
|
|
281
|
+
- IconArrowLeftSquare
|
|
281
282
|
- IconArrowLeftUpCircle
|
|
282
283
|
- IconArrowPathDown
|
|
283
284
|
- IconArrowPathLeft
|
|
@@ -289,6 +290,7 @@ Below is a complete list of available icons:
|
|
|
289
290
|
- IconArrowRightCircle
|
|
290
291
|
- IconArrowRightDownCircle
|
|
291
292
|
- IconArrowRightLeft
|
|
293
|
+
- IconArrowRightSquare
|
|
292
294
|
- IconArrowRightUpCircle
|
|
293
295
|
- IconArrowRotateClockwise
|
|
294
296
|
- IconArrowRotateCounterClockwise
|
|
@@ -317,6 +319,7 @@ Below is a complete list of available icons:
|
|
|
317
319
|
- IconArrowUpDownLeftRight
|
|
318
320
|
- IconArrowUpLeft
|
|
319
321
|
- IconArrowUpRight
|
|
322
|
+
- IconArrowUpSquare
|
|
320
323
|
- IconArrowWall2Down
|
|
321
324
|
- IconArrowWall2Left
|
|
322
325
|
- IconArrowWall2Right
|
|
@@ -364,6 +367,7 @@ Below is a complete list of available icons:
|
|
|
364
367
|
- IconMinimize45
|
|
365
368
|
- IconOngoing
|
|
366
369
|
- IconRandom
|
|
370
|
+
- IconRedirectArrow
|
|
367
371
|
- IconRemix
|
|
368
372
|
- IconRotate360Left
|
|
369
373
|
- IconRotate360Right
|
|
@@ -610,6 +614,7 @@ Below is a complete list of available icons:
|
|
|
610
614
|
- IconPhoneHaptic
|
|
611
615
|
- IconPrinter
|
|
612
616
|
- IconProcessor
|
|
617
|
+
- IconRadar
|
|
613
618
|
- IconRadio
|
|
614
619
|
- IconSatellite1
|
|
615
620
|
- IconSatellite2
|
|
@@ -1184,7 +1189,7 @@ Below is a complete list of available icons:
|
|
|
1184
1189
|
- IconPinCircle
|
|
1185
1190
|
- IconPinFlag
|
|
1186
1191
|
- IconPinLocation
|
|
1187
|
-
-
|
|
1192
|
+
- IconRadar1
|
|
1188
1193
|
- IconSend
|
|
1189
1194
|
- IconWorld
|
|
1190
1195
|
|
|
@@ -1270,6 +1275,8 @@ Below is a complete list of available icons:
|
|
|
1270
1275
|
- IconCameraOff1
|
|
1271
1276
|
- IconCapture
|
|
1272
1277
|
- IconCat
|
|
1278
|
+
- IconClapboard
|
|
1279
|
+
- IconClapboardWide
|
|
1273
1280
|
- IconClosedCaptioning
|
|
1274
1281
|
- IconContrast
|
|
1275
1282
|
- IconCrop
|
package/icons/index.d.ts
CHANGED
|
@@ -91,6 +91,7 @@ export type CentralIconName =
|
|
|
91
91
|
| "IconArrowLeftCircle"
|
|
92
92
|
| "IconArrowLeftDownCircle"
|
|
93
93
|
| "IconArrowLeftRight"
|
|
94
|
+
| "IconArrowLeftSquare"
|
|
94
95
|
| "IconArrowLeftUpCircle"
|
|
95
96
|
| "IconArrowLeftX"
|
|
96
97
|
| "IconArrowOutOfBox"
|
|
@@ -104,6 +105,7 @@ export type CentralIconName =
|
|
|
104
105
|
| "IconArrowRightCircle"
|
|
105
106
|
| "IconArrowRightDownCircle"
|
|
106
107
|
| "IconArrowRightLeft"
|
|
108
|
+
| "IconArrowRightSquare"
|
|
107
109
|
| "IconArrowRightUpCircle"
|
|
108
110
|
| "IconArrowRotateClockwise"
|
|
109
111
|
| "IconArrowRotateCounterClockwise"
|
|
@@ -136,6 +138,7 @@ export type CentralIconName =
|
|
|
136
138
|
| "IconArrowUpDownLeftRight"
|
|
137
139
|
| "IconArrowUpLeft"
|
|
138
140
|
| "IconArrowUpRight"
|
|
141
|
+
| "IconArrowUpSquare"
|
|
139
142
|
| "IconArrowWall2Down"
|
|
140
143
|
| "IconArrowWall2Left"
|
|
141
144
|
| "IconArrowWall2Right"
|
|
@@ -438,6 +441,8 @@ export type CentralIconName =
|
|
|
438
441
|
| "IconCircleRecord"
|
|
439
442
|
| "IconCirclesThree"
|
|
440
443
|
| "IconCircleX"
|
|
444
|
+
| "IconClapboard"
|
|
445
|
+
| "IconClapboardWide"
|
|
441
446
|
| "IconClaudeai"
|
|
442
447
|
| "IconClipboard"
|
|
443
448
|
| "IconClipboard2"
|
|
@@ -1197,6 +1202,7 @@ export type CentralIconName =
|
|
|
1197
1202
|
| "IconQuickSearch"
|
|
1198
1203
|
| "IconQuora"
|
|
1199
1204
|
| "IconRadar"
|
|
1205
|
+
| "IconRadar1"
|
|
1200
1206
|
| "IconRadio"
|
|
1201
1207
|
| "IconRainbow"
|
|
1202
1208
|
| "IconRainy"
|
|
@@ -1216,6 +1222,7 @@ export type CentralIconName =
|
|
|
1216
1222
|
| "IconRecord"
|
|
1217
1223
|
| "IconRecraft"
|
|
1218
1224
|
| "IconReddit"
|
|
1225
|
+
| "IconRedirectArrow"
|
|
1219
1226
|
| "IconRemix"
|
|
1220
1227
|
| "IconRemoveBackground"
|
|
1221
1228
|
| "IconRemoveBackground2"
|