@central-icons-react/square-outlined-radius-0-stroke-1.5 1.1.7 → 1.1.9

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.
Files changed (39) hide show
  1. package/IconChevronDownMedium/index.d.ts +4 -0
  2. package/IconChevronDownMedium/index.js +2 -0
  3. package/IconChevronDownMedium/index.js.map +1 -0
  4. package/IconChevronDownMedium/index.mjs +2 -0
  5. package/IconChevronDownMedium/index.mjs.map +1 -0
  6. package/IconChevronLeftMedium/index.d.ts +4 -0
  7. package/IconChevronLeftMedium/index.js +2 -0
  8. package/IconChevronLeftMedium/index.js.map +1 -0
  9. package/IconChevronLeftMedium/index.mjs +2 -0
  10. package/IconChevronLeftMedium/index.mjs.map +1 -0
  11. package/IconChevronRightMedium/index.d.ts +4 -0
  12. package/IconChevronRightMedium/index.js +2 -0
  13. package/IconChevronRightMedium/index.js.map +1 -0
  14. package/IconChevronRightMedium/index.mjs +2 -0
  15. package/IconChevronRightMedium/index.mjs.map +1 -0
  16. package/IconChevronTopMedium/index.d.ts +4 -0
  17. package/IconChevronTopMedium/index.js +2 -0
  18. package/IconChevronTopMedium/index.js.map +1 -0
  19. package/IconChevronTopMedium/index.mjs +2 -0
  20. package/IconChevronTopMedium/index.mjs.map +1 -0
  21. package/IconFontStyle/index.d.ts +4 -0
  22. package/IconFontStyle/index.js +2 -0
  23. package/IconFontStyle/index.js.map +1 -0
  24. package/IconFontStyle/index.mjs +2 -0
  25. package/IconFontStyle/index.mjs.map +1 -0
  26. package/README.md +5 -0
  27. package/icons/index.d.ts +5 -0
  28. package/icons/index.js +1 -1
  29. package/icons/index.js.map +1 -1
  30. package/icons/index.mjs +1 -1
  31. package/icons/index.mjs.map +1 -1
  32. package/icons-index.json +14 -4
  33. package/index.d.ts +20 -0
  34. package/index.js +1 -1
  35. package/index.js.map +1 -1
  36. package/index.mjs +1 -1
  37. package/index.mjs.map +1 -1
  38. package/license-check.js +1 -1
  39. package/package.json +1 -1
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconChevronDownMedium: React.FC<CentralIconBaseProps>;
4
+ export default IconChevronDownMedium;
@@ -0,0 +1,2 @@
1
+ "use strict";var d=Object.create;var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,w=Object.prototype.hasOwnProperty;var x=(e,r)=>{for(var o in r)p(e,o,{get:r[o],enumerable:!0})},l=(e,r,o,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of h(r))!w.call(e,t)&&t!==o&&p(e,t,{get:()=>r[t],enumerable:!(n=f(r,t))||n.enumerable});return e};var m=(e,r,o)=>(o=e!=null?d(g(e)):{},l(r||!e||!e.__esModule?p(o,"default",{value:e,enumerable:!0}):o,e)),B=e=>l(p({},"__esModule",{value:!0}),e);var v={};x(v,{IconChevronDownMedium:()=>c,default:()=>I});module.exports=B(v);var s=m(require("react"));var a=m(require("react")),i=({children:e,size:r=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:u,...C})=>a.default.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:n,...u}},o&&!t&&a.default.createElement("title",null,o),e);var c=e=>s.default.createElement(i,{...e,ariaLabel:"chevron-down-medium"},s.default.createElement("path",{d:"M5.75 9.5L12 15.75L18.25 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),I=c;0&&(module.exports={IconChevronDownMedium});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconChevronDownMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconChevronDownMedium: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"chevron-down-medium\">\n <path\n d=\"M5.75 9.5L12 15.75L18.25 9.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronDownMedium;\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,2BAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,+BACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconChevronDownMedium_exports","__export","IconChevronDownMedium","IconChevronDownMedium_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconChevronDownMedium","props","React","CentralIconBase","IconChevronDownMedium_default"]}
@@ -0,0 +1,2 @@
1
+ import a from"react";import n from"react";var p=({children:r,size:e=24,ariaLabel:t,color:s,ariaHidden:o=!0,style:l,...m})=>n.createElement("svg",{...m,"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:s,...l}},t&&!o&&n.createElement("title",null,t),r);var i=r=>a.createElement(p,{...r,ariaLabel:"chevron-down-medium"},a.createElement("path",{d:"M5.75 9.5L12 15.75L18.25 9.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),f=i;export{i as IconChevronDownMedium,f as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconChevronDownMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconChevronDownMedium: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"chevron-down-medium\">\n <path\n d=\"M5.75 9.5L12 15.75L18.25 9.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronDownMedium;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uBACpCC,EAAA,cAAC,QACC,EAAE,+BACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconChevronDownMedium","props","React","CentralIconBase","IconChevronDownMedium_default"]}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconChevronLeftMedium: React.FC<CentralIconBaseProps>;
4
+ export default IconChevronLeftMedium;
@@ -0,0 +1,2 @@
1
+ "use strict";var C=Object.create;var p=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(e,r)=>{for(var t in r)p(e,t,{get:r[t],enumerable:!0})},l=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of d(r))!x.call(e,o)&&o!==t&&p(e,o,{get:()=>r[o],enumerable:!(n=h(r,o))||n.enumerable});return e};var m=(e,r,t)=>(t=e!=null?C(g(e)):{},l(r||!e||!e.__esModule?p(t,"default",{value:e,enumerable:!0}):t,e)),I=e=>l(p({},"__esModule",{value:!0}),e);var w={};B(w,{IconChevronLeftMedium:()=>c,default:()=>v});module.exports=I(w);var s=m(require("react"));var a=m(require("react")),i=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:u,...f})=>a.default.createElement("svg",{...f,"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:n,...u}},t&&!o&&a.default.createElement("title",null,t),e);var c=e=>s.default.createElement(i,{...e,ariaLabel:"chevron-left-medium"},s.default.createElement("path",{d:"M14.5 18.25L8.25 12L14.5 5.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),v=c;0&&(module.exports={IconChevronLeftMedium});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconChevronLeftMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconChevronLeftMedium: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"chevron-left-medium\">\n <path\n d=\"M14.5 18.25L8.25 12L14.5 5.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronLeftMedium;\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,2BAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,gCACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconChevronLeftMedium_exports","__export","IconChevronLeftMedium","IconChevronLeftMedium_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconChevronLeftMedium","props","React","CentralIconBase","IconChevronLeftMedium_default"]}
@@ -0,0 +1,2 @@
1
+ import a from"react";import n from"react";var p=({children:r,size:e=24,ariaLabel:o,color:s,ariaHidden:t=!0,style:l,...m})=>n.createElement("svg",{...m,"aria-hidden":t,role:t?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...l}},o&&!t&&n.createElement("title",null,o),r);var i=r=>a.createElement(p,{...r,ariaLabel:"chevron-left-medium"},a.createElement("path",{d:"M14.5 18.25L8.25 12L14.5 5.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),h=i;export{i as IconChevronLeftMedium,h as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconChevronLeftMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconChevronLeftMedium: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"chevron-left-medium\">\n <path\n d=\"M14.5 18.25L8.25 12L14.5 5.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronLeftMedium;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uBACpCC,EAAA,cAAC,QACC,EAAE,gCACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconChevronLeftMedium","props","React","CentralIconBase","IconChevronLeftMedium_default"]}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconChevronRightMedium: React.FC<CentralIconBaseProps>;
4
+ export default IconChevronRightMedium;
@@ -0,0 +1,2 @@
1
+ "use strict";var C=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(e,r)=>{for(var t in r)p(e,t,{get:r[t],enumerable:!0})},l=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of f(r))!x.call(e,o)&&o!==t&&p(e,o,{get:()=>r[o],enumerable:!(n=g(r,o))||n.enumerable});return e};var i=(e,r,t)=>(t=e!=null?C(d(e)):{},l(r||!e||!e.__esModule?p(t,"default",{value:e,enumerable:!0}):t,e)),I=e=>l(p({},"__esModule",{value:!0}),e);var w={};B(w,{IconChevronRightMedium:()=>c,default:()=>v});module.exports=I(w);var s=i(require("react"));var a=i(require("react")),m=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:u,...h})=>a.default.createElement("svg",{...h,"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:n,...u}},t&&!o&&a.default.createElement("title",null,t),e);var c=e=>s.default.createElement(m,{...e,ariaLabel:"chevron-right-medium"},s.default.createElement("path",{d:"M9.5 18.25L15.75 12L9.5 5.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),v=c;0&&(module.exports={IconChevronRightMedium});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconChevronRightMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconChevronRightMedium: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"chevron-right-medium\">\n <path\n d=\"M9.5 18.25L15.75 12L9.5 5.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronRightMedium;\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,4BAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,+BACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconChevronRightMedium_exports","__export","IconChevronRightMedium","IconChevronRightMedium_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconChevronRightMedium","props","React","CentralIconBase","IconChevronRightMedium_default"]}
@@ -0,0 +1,2 @@
1
+ import a from"react";import n from"react";var p=({children:r,size:e=24,ariaLabel:o,color:s,ariaHidden:t=!0,style:l,...i})=>n.createElement("svg",{...i,"aria-hidden":t,role:t?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...l}},o&&!t&&n.createElement("title",null,o),r);var m=r=>a.createElement(p,{...r,ariaLabel:"chevron-right-medium"},a.createElement("path",{d:"M9.5 18.25L15.75 12L9.5 5.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),g=m;export{m as IconChevronRightMedium,g as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconChevronRightMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconChevronRightMedium: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"chevron-right-medium\">\n <path\n d=\"M9.5 18.25L15.75 12L9.5 5.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronRightMedium;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpCC,EAAA,cAAC,QACC,EAAE,+BACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconChevronRightMedium","props","React","CentralIconBase","IconChevronRightMedium_default"]}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconChevronTopMedium: React.FC<CentralIconBaseProps>;
4
+ export default IconChevronTopMedium;
@@ -0,0 +1,2 @@
1
+ "use strict";var f=Object.create;var p=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(e,r)=>{for(var t in r)p(e,t,{get:r[t],enumerable:!0})},l=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of d(r))!x.call(e,o)&&o!==t&&p(e,o,{get:()=>r[o],enumerable:!(n=h(r,o))||n.enumerable});return e};var m=(e,r,t)=>(t=e!=null?f(g(e)):{},l(r||!e||!e.__esModule?p(t,"default",{value:e,enumerable:!0}):t,e)),I=e=>l(p({},"__esModule",{value:!0}),e);var w={};B(w,{IconChevronTopMedium:()=>c,default:()=>v});module.exports=I(w);var s=m(require("react"));var a=m(require("react")),i=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:u,...C})=>a.default.createElement("svg",{...C,"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:n,...u}},t&&!o&&a.default.createElement("title",null,t),e);var c=e=>s.default.createElement(i,{...e,ariaLabel:"chevron-top-medium"},s.default.createElement("path",{d:"M5.75 14.5L12 8.25L18.25 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),v=c;0&&(module.exports={IconChevronTopMedium});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconChevronTopMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconChevronTopMedium: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"chevron-top-medium\">\n <path\n d=\"M5.75 14.5L12 8.25L18.25 14.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTopMedium;\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,QACC,EAAE,gCACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconChevronTopMedium_exports","__export","IconChevronTopMedium","IconChevronTopMedium_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconChevronTopMedium","props","React","CentralIconBase","IconChevronTopMedium_default"]}
@@ -0,0 +1,2 @@
1
+ import a from"react";import n from"react";var p=({children:r,size:e=24,ariaLabel:o,color:s,ariaHidden:t=!0,style:l,...m})=>n.createElement("svg",{...m,"aria-hidden":t,role:t?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...l}},o&&!t&&n.createElement("title",null,o),r);var i=r=>a.createElement(p,{...r,ariaLabel:"chevron-top-medium"},a.createElement("path",{d:"M5.75 14.5L12 8.25L18.25 14.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),h=i;export{i as IconChevronTopMedium,h as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconChevronTopMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconChevronTopMedium: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"chevron-top-medium\">\n <path\n d=\"M5.75 14.5L12 8.25L18.25 14.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconChevronTopMedium;\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,QACC,EAAE,gCACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconChevronTopMedium","props","React","CentralIconBase","IconChevronTopMedium_default"]}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconFontStyle: React.FC<CentralIconBaseProps>;
4
+ export default IconFontStyle;
@@ -0,0 +1,2 @@
1
+ "use strict";var C=Object.create;var l=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,y=Object.prototype.hasOwnProperty;var B=(e,t)=>{for(var o in t)l(e,o,{get:t[o],enumerable:!0})},s=(e,t,o,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let r of g(t))!y.call(e,r)&&r!==o&&l(e,r,{get:()=>t[r],enumerable:!(n=d(t,r))||n.enumerable});return e};var i=(e,t,o)=>(o=e!=null?C(x(e)):{},s(t||!e||!e.__esModule?l(o,"default",{value:e,enumerable:!0}):o,e)),H=e=>s(l({},"__esModule",{value:!0}),e);var V={};B(V,{IconFontStyle:()=>m,default:()=>I});module.exports=H(V);var a=i(require("react"));var p=i(require("react")),f=({children:e,size:t=24,ariaLabel:o,color:n,ariaHidden:r=!0,style:c,...u})=>p.default.createElement("svg",{...u,"aria-hidden":r,role:r?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:n,...c}},o&&!r&&p.default.createElement("title",null,o),e);var m=e=>a.default.createElement(f,{...e,ariaLabel:"font-style, fonts, serif"},a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19.1826 19.75H20.5V21H14.5V19.75H16.0264L14.3174 14.5H8.05566L6.34668 19.75H7.75V21H3.5V19.75H4.76953L10.2227 3H13.7295L19.1826 19.75ZM8.54395 13H13.8291L11.1865 4.88379L8.54395 13Z",fill:"currentColor"})),I=m;0&&(module.exports={IconFontStyle});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconFontStyle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFontStyle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"font-style, fonts, serif\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19.1826 19.75H20.5V21H14.5V19.75H16.0264L14.3174 14.5H8.05566L6.34668 19.75H7.75V21H3.5V19.75H4.76953L10.2227 3H13.7295L19.1826 19.75ZM8.54395 13H13.8291L11.1865 4.88379L8.54395 13Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFontStyle;\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,4BACpC,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,yLACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconFontStyle_exports","__export","IconFontStyle","IconFontStyle_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconFontStyle","props","React","CentralIconBase","IconFontStyle_default"]}
@@ -0,0 +1,2 @@
1
+ import p from"react";import n from"react";var l=({children:t,size:e=24,ariaLabel:r,color:a,ariaHidden:o=!0,style:s,...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:a,...s}},r&&!o&&n.createElement("title",null,r),t);var f=t=>p.createElement(l,{...t,ariaLabel:"font-style, fonts, serif"},p.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19.1826 19.75H20.5V21H14.5V19.75H16.0264L14.3174 14.5H8.05566L6.34668 19.75H7.75V21H3.5V19.75H4.76953L10.2227 3H13.7295L19.1826 19.75ZM8.54395 13H13.8291L11.1865 4.88379L8.54395 13Z",fill:"currentColor"})),d=f;export{f as IconFontStyle,d as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconFontStyle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFontStyle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"font-style, fonts, serif\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19.1826 19.75H20.5V21H14.5V19.75H16.0264L14.3174 14.5H8.05566L6.34668 19.75H7.75V21H3.5V19.75H4.76953L10.2227 3H13.7295L19.1826 19.75ZM8.54395 13H13.8291L11.1865 4.88379L8.54395 13Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFontStyle;\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,4BACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,yLACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFontStyle","props","React","CentralIconBase","IconFontStyle_default"]}
package/README.md CHANGED
@@ -299,6 +299,7 @@ Below is a complete list of available icons:
299
299
  - IconChevronDoubleLeft
300
300
  - IconChevronDoubleRight
301
301
  - IconChevronDoubleUp
302
+ - IconChevronDownMedium
302
303
  - IconChevronDownSmall
303
304
  - IconChevronGrabberHorizontal
304
305
  - IconChevronGrabberVertical
@@ -307,10 +308,13 @@ Below is a complete list of available icons:
307
308
  - IconChevronLargeRight
308
309
  - IconChevronLargeTop
309
310
  - IconChevronLeft
311
+ - IconChevronLeftMedium
310
312
  - IconChevronLeftSmall
311
313
  - IconChevronRight
314
+ - IconChevronRightMedium
312
315
  - IconChevronRightSmall
313
316
  - IconChevronTop
317
+ - IconChevronTopMedium
314
318
  - IconChevronTopSmall
315
319
  - IconChevronTriangleDownSmall
316
320
  - IconChevronTriangleUpSmall
@@ -1722,6 +1726,7 @@ Below is a complete list of available icons:
1722
1726
  - IconCloseQuote2
1723
1727
  - IconConcise
1724
1728
  - IconDivider
1729
+ - IconFontStyle
1725
1730
  - IconH1
1726
1731
  - IconH2
1727
1732
  - IconH3
package/icons/index.d.ts CHANGED
@@ -380,6 +380,7 @@ export type CentralIconName =
380
380
  | "IconChevronDoubleLeft"
381
381
  | "IconChevronDoubleRight"
382
382
  | "IconChevronDoubleUp"
383
+ | "IconChevronDownMedium"
383
384
  | "IconChevronDownSmall"
384
385
  | "IconChevronGrabberHorizontal"
385
386
  | "IconChevronGrabberVertical"
@@ -388,10 +389,13 @@ export type CentralIconName =
388
389
  | "IconChevronLargeRight"
389
390
  | "IconChevronLargeTop"
390
391
  | "IconChevronLeft"
392
+ | "IconChevronLeftMedium"
391
393
  | "IconChevronLeftSmall"
392
394
  | "IconChevronRight"
395
+ | "IconChevronRightMedium"
393
396
  | "IconChevronRightSmall"
394
397
  | "IconChevronTop"
398
+ | "IconChevronTopMedium"
395
399
  | "IconChevronTopSmall"
396
400
  | "IconChevronTriangleDownSmall"
397
401
  | "IconChevronTriangleUpSmall"
@@ -695,6 +699,7 @@ export type CentralIconName =
695
699
  | "IconFolders"
696
700
  | "IconFolderShared"
697
701
  | "IconFolderUpload"
702
+ | "IconFontStyle"
698
703
  | "IconFoodBell"
699
704
  | "IconFoodExperiences"
700
705
  | "IconFootsteps"