@central-icons-react/square-outlined-radius-0-stroke-1 1.1.105 → 1.1.109

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 (51) hide show
  1. package/IconBrokenChainLink3/index.js +1 -1
  2. package/IconBrokenChainLink3/index.js.map +1 -1
  3. package/IconBrokenChainLink3/index.mjs +1 -1
  4. package/IconBrokenChainLink3/index.mjs.map +1 -1
  5. package/IconEmailNotification/index.js +1 -1
  6. package/IconEmailNotification/index.js.map +1 -1
  7. package/IconEmailNotification/index.mjs +1 -1
  8. package/IconEmailNotification/index.mjs.map +1 -1
  9. package/IconEuropeanUnion/index.js +1 -1
  10. package/IconEuropeanUnion/index.js.map +1 -1
  11. package/IconEuropeanUnion/index.mjs +1 -1
  12. package/IconEuropeanUnion/index.mjs.map +1 -1
  13. package/IconFormSeal/index.js +1 -1
  14. package/IconFormSeal/index.js.map +1 -1
  15. package/IconFormSeal/index.mjs +1 -1
  16. package/IconFormSeal/index.mjs.map +1 -1
  17. package/IconGraduateCap/index.js +1 -1
  18. package/IconGraduateCap/index.js.map +1 -1
  19. package/IconGraduateCap/index.mjs +1 -1
  20. package/IconGraduateCap/index.mjs.map +1 -1
  21. package/IconGrok/index.js +1 -1
  22. package/IconGrok/index.js.map +1 -1
  23. package/IconGrok/index.mjs +1 -1
  24. package/IconGrok/index.mjs.map +1 -1
  25. package/IconMarker/index.js +1 -1
  26. package/IconMarker/index.js.map +1 -1
  27. package/IconMarker/index.mjs +1 -1
  28. package/IconMarker/index.mjs.map +1 -1
  29. package/IconParasol/index.js +1 -1
  30. package/IconParasol/index.js.map +1 -1
  31. package/IconParasol/index.mjs +1 -1
  32. package/IconParasol/index.mjs.map +1 -1
  33. package/IconRuler/index.js +1 -1
  34. package/IconRuler/index.js.map +1 -1
  35. package/IconRuler/index.mjs +1 -1
  36. package/IconRuler/index.mjs.map +1 -1
  37. package/IconSubscriptionTick2/index.js +1 -1
  38. package/IconSubscriptionTick2/index.js.map +1 -1
  39. package/IconSubscriptionTick2/index.mjs +1 -1
  40. package/IconSubscriptionTick2/index.mjs.map +1 -1
  41. package/icons/index.js +1 -1
  42. package/icons/index.js.map +1 -1
  43. package/icons/index.mjs +1 -1
  44. package/icons/index.mjs.map +1 -1
  45. package/icons-index.json +1 -1
  46. package/index.js +1 -1
  47. package/index.js.map +1 -1
  48. package/index.mjs +1 -1
  49. package/index.mjs.map +1 -1
  50. package/license-check.js +1 -1
  51. package/package.json +1 -1
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconGrok/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGrok: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"grok\">\n <g clip-path=\"url(#clip0_12361_25570)\">\n <path\n d=\"M9.23842 15.4055L17.3051 9.26292C17.7006 8.9618 18.2658 9.07925 18.4543 9.54702C19.446 12.0138 19.0029 14.9784 17.0297 17.0138C15.0566 19.0492 12.3111 19.4955 9.80163 18.4789L7.06027 19.7882C10.9922 22.5604 15.7667 21.8748 18.7504 18.795C21.117 16.3538 21.8499 13.0262 21.1646 10.0254L21.1708 10.0318C20.1769 5.62354 21.4151 3.86151 23.9515 0.258408C23.9702 0.231693 23.9351 0.202703 23.9123 0.226139L20.7939 3.44289V3.43221L9.23842 15.4055Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M7.65167 7.33217C5.24368 9.81392 4.75711 14.1176 7.57924 16.8984L7.57713 16.9005L0.0792788 23.8097C0.0528384 23.834 0.0162235 23.8015 0.0377551 23.7728C0.487937 23.1707 1.01883 22.595 1.54932 22.0198L1.57777 21.9889C3.28214 20.1411 4.97141 18.3097 3.93926 15.7216C2.55615 12.2552 3.36158 8.19287 5.9228 5.55089C8.58547 2.80639 12.507 2.1144 15.7826 3.5048C16.5072 3.78245 17.1388 4.17758 17.6315 4.54493L14.8964 5.84777C12.3497 4.7457 9.43229 5.49537 7.65167 7.33217Z\"\n fill=\"currentColor\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_12361_25570\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconGrok;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,QACpCC,EAAA,cAAC,KAAE,YAAU,2BACXA,EAAA,cAAC,QACC,EAAE,4bACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,sdACF,KAAK,eACP,CACF,EACAA,EAAA,cAAC,YACCA,EAAA,cAAC,YAAS,GAAG,qBACXA,EAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGrok","props","React","CentralIconBase","IconGrok_default"]}
1
+ {"version":3,"sources":["../src/IconGrok/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGrok: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"grok\">\n <g clipPath=\"url(#clip0_12361_25570)\">\n <path\n d=\"M9.23842 15.4055L17.3051 9.26292C17.7006 8.9618 18.2658 9.07925 18.4543 9.54702C19.446 12.0138 19.0029 14.9784 17.0297 17.0138C15.0566 19.0492 12.3111 19.4955 9.80163 18.4789L7.06027 19.7882C10.9922 22.5604 15.7667 21.8748 18.7504 18.795C21.117 16.3538 21.8499 13.0262 21.1646 10.0254L21.1708 10.0318C20.1769 5.62354 21.4151 3.86151 23.9515 0.258408C23.9702 0.231693 23.9351 0.202703 23.9123 0.226139L20.7939 3.44289V3.43221L9.23842 15.4055Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M7.65167 7.33217C5.24368 9.81392 4.75711 14.1176 7.57924 16.8984L7.57713 16.9005L0.0792788 23.8097C0.0528384 23.834 0.0162235 23.8015 0.0377551 23.7728C0.487937 23.1707 1.01883 22.595 1.54932 22.0198L1.57777 21.9889C3.28214 20.1411 4.97141 18.3097 3.93926 15.7216C2.55615 12.2552 3.36158 8.19287 5.9228 5.55089C8.58547 2.80639 12.507 2.1144 15.7826 3.5048C16.5072 3.78245 17.1388 4.17758 17.6315 4.54493L14.8964 5.84777C12.3497 4.7457 9.43229 5.49537 7.65167 7.33217Z\"\n fill=\"currentColor\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_12361_25570\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconGrok;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,QACpCC,EAAA,cAAC,KAAE,SAAS,2BACVA,EAAA,cAAC,QACC,EAAE,4bACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,sdACF,KAAK,eACP,CACF,EACAA,EAAA,cAAC,YACCA,EAAA,cAAC,YAAS,GAAG,qBACXA,EAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGrok","props","React","CentralIconBase","IconGrok_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.create;var l=Object.defineProperty;var C=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,w=Object.prototype.hasOwnProperty;var x=(r,e)=>{for(var t in e)l(r,t,{get:e[t],enumerable:!0})},s=(r,e,t,p)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of f(e))!w.call(r,o)&&o!==t&&l(r,o,{get:()=>e[o],enumerable:!(p=C(e,o))||p.enumerable});return r};var i=(r,e,t)=>(t=r!=null?u(d(r)):{},s(e||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t,r)),B=r=>s(l({},"__esModule",{value:!0}),r);var L={};x(L,{IconMarker:()=>c,default:()=>I});module.exports=B(L);var n=i(require("react"));var a=i(require("react")),h=({children:r,size:e=24,ariaLabel:t,color:p,ariaHidden:o=!0,style:m,...g})=>a.default.createElement("svg",{...g,"aria-hidden":o,role:o?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...m}},t&&!o&&a.default.createElement("title",null,t),r);var c=r=>n.default.createElement(h,{...r,ariaLabel:"marker,highlight"},n.default.createElement("g",{"clip-path":"url(#clip0_9378_27005)"},n.default.createElement("path",{d:"M17.2496 1.5L3.59961 12L11.9996 20.4L22.4996 6.75L17.2496 1.5Z",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M4.5 13.5C4.5 13.5 3.5 17.5 1.5 19.35L4.65 22.5C6.5 20.4 10.5 19.5 10.5 19.5",stroke:"currentColor",strokeLinecap:"square"})),n.default.createElement("defs",null,n.default.createElement("clipPath",{id:"clip0_9378_27005"},n.default.createElement("rect",{width:"24",height:"24",fill:"white"})))),I=c;0&&(module.exports={IconMarker});
1
+ "use strict";var u=Object.create;var l=Object.defineProperty;var C=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var w=(r,e)=>{for(var t in e)l(r,t,{get:e[t],enumerable:!0})},s=(r,e,t,p)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of f(e))!P.call(r,o)&&o!==t&&l(r,o,{get:()=>e[o],enumerable:!(p=C(e,o))||p.enumerable});return r};var i=(r,e,t)=>(t=r!=null?u(d(r)):{},s(e||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>s(l({},"__esModule",{value:!0}),r);var I={};w(I,{IconMarker:()=>c,default:()=>B});module.exports=x(I);var n=i(require("react"));var a=i(require("react")),h=({children:r,size:e=24,ariaLabel:t,color:p,ariaHidden:o=!0,style:m,...g})=>a.default.createElement("svg",{...g,"aria-hidden":o,role:o?void 0:"img",width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...m}},t&&!o&&a.default.createElement("title",null,t),r);var c=r=>n.default.createElement(h,{...r,ariaLabel:"marker,highlight"},n.default.createElement("g",{clipPath:"url(#clip0_9378_27005)"},n.default.createElement("path",{d:"M17.2496 1.5L3.59961 12L11.9996 20.4L22.4996 6.75L17.2496 1.5Z",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M4.5 13.5C4.5 13.5 3.5 17.5 1.5 19.35L4.65 22.5C6.5 20.4 10.5 19.5 10.5 19.5",stroke:"currentColor",strokeLinecap:"square"})),n.default.createElement("defs",null,n.default.createElement("clipPath",{id:"clip0_9378_27005"},n.default.createElement("rect",{width:"24",height:"24",fill:"white"})))),B=c;0&&(module.exports={IconMarker});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconMarker/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMarker: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"marker,highlight\">\n <g clip-path=\"url(#clip0_9378_27005)\">\n <path\n d=\"M17.2496 1.5L3.59961 12L11.9996 20.4L22.4996 6.75L17.2496 1.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M4.5 13.5C4.5 13.5 3.5 17.5 1.5 19.35L4.65 22.5C6.5 20.4 10.5 19.5 10.5 19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_9378_27005\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconMarker;\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,oBACpC,EAAAC,QAAA,cAAC,KAAE,YAAU,0BACX,EAAAA,QAAA,cAAC,QACC,EAAE,iEACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+EACF,OAAO,eACP,cAAc,SAChB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,oBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["IconMarker_exports","__export","IconMarker","IconMarker_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconMarker","props","React","CentralIconBase","IconMarker_default"]}
1
+ {"version":3,"sources":["../src/IconMarker/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMarker: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"marker,highlight\">\n <g clipPath=\"url(#clip0_9378_27005)\">\n <path\n d=\"M17.2496 1.5L3.59961 12L11.9996 20.4L22.4996 6.75L17.2496 1.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M4.5 13.5C4.5 13.5 3.5 17.5 1.5 19.35L4.65 22.5C6.5 20.4 10.5 19.5 10.5 19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_9378_27005\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconMarker;\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,oBACpC,EAAAC,QAAA,cAAC,KAAE,SAAS,0BACV,EAAAA,QAAA,cAAC,QACC,EAAE,iEACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+EACF,OAAO,eACP,cAAc,SAChB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,oBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["IconMarker_exports","__export","IconMarker","IconMarker_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconMarker","props","React","CentralIconBase","IconMarker_default"]}
@@ -1,2 +1,2 @@
1
- import r from"react";import p from"react";var l=({children:t,size:e=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:s,...i})=>p.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}},n&&!o&&p.createElement("title",null,n),t);var h=t=>r.createElement(l,{...t,ariaLabel:"marker,highlight"},r.createElement("g",{"clip-path":"url(#clip0_9378_27005)"},r.createElement("path",{d:"M17.2496 1.5L3.59961 12L11.9996 20.4L22.4996 6.75L17.2496 1.5Z",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M4.5 13.5C4.5 13.5 3.5 17.5 1.5 19.35L4.65 22.5C6.5 20.4 10.5 19.5 10.5 19.5",stroke:"currentColor",strokeLinecap:"square"})),r.createElement("defs",null,r.createElement("clipPath",{id:"clip0_9378_27005"},r.createElement("rect",{width:"24",height:"24",fill:"white"})))),C=h;export{h as IconMarker,C as default};
1
+ import r from"react";import p from"react";var l=({children:t,size:e=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:s,...i})=>p.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}},n&&!o&&p.createElement("title",null,n),t);var h=t=>r.createElement(l,{...t,ariaLabel:"marker,highlight"},r.createElement("g",{clipPath:"url(#clip0_9378_27005)"},r.createElement("path",{d:"M17.2496 1.5L3.59961 12L11.9996 20.4L22.4996 6.75L17.2496 1.5Z",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M4.5 13.5C4.5 13.5 3.5 17.5 1.5 19.35L4.65 22.5C6.5 20.4 10.5 19.5 10.5 19.5",stroke:"currentColor",strokeLinecap:"square"})),r.createElement("defs",null,r.createElement("clipPath",{id:"clip0_9378_27005"},r.createElement("rect",{width:"24",height:"24",fill:"white"})))),C=h;export{h as IconMarker,C as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconMarker/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMarker: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"marker,highlight\">\n <g clip-path=\"url(#clip0_9378_27005)\">\n <path\n d=\"M17.2496 1.5L3.59961 12L11.9996 20.4L22.4996 6.75L17.2496 1.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M4.5 13.5C4.5 13.5 3.5 17.5 1.5 19.35L4.65 22.5C6.5 20.4 10.5 19.5 10.5 19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_9378_27005\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconMarker;\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,oBACpCC,EAAA,cAAC,KAAE,YAAU,0BACXA,EAAA,cAAC,QACC,EAAE,iEACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,+EACF,OAAO,eACP,cAAc,SAChB,CACF,EACAA,EAAA,cAAC,YACCA,EAAA,cAAC,YAAS,GAAG,oBACXA,EAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconMarker","props","React","CentralIconBase","IconMarker_default"]}
1
+ {"version":3,"sources":["../src/IconMarker/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMarker: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"marker,highlight\">\n <g clipPath=\"url(#clip0_9378_27005)\">\n <path\n d=\"M17.2496 1.5L3.59961 12L11.9996 20.4L22.4996 6.75L17.2496 1.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M4.5 13.5C4.5 13.5 3.5 17.5 1.5 19.35L4.65 22.5C6.5 20.4 10.5 19.5 10.5 19.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_9378_27005\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconMarker;\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,oBACpCC,EAAA,cAAC,KAAE,SAAS,0BACVA,EAAA,cAAC,QACC,EAAE,iEACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,+EACF,OAAO,eACP,cAAc,SAChB,CACF,EACAA,EAAA,cAAC,YACCA,EAAA,cAAC,YAAS,GAAG,oBACXA,EAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconMarker","props","React","CentralIconBase","IconMarker_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var m=Object.create;var s=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var P=(r,t)=>{for(var e in t)s(r,e,{get:t[e],enumerable:!0})},l=(r,t,e,p)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of f(t))!k.call(r,o)&&o!==e&&s(r,o,{get:()=>t[o],enumerable:!(p=d(t,o))||p.enumerable});return r};var i=(r,t,e)=>(e=r!=null?m(g(r)):{},l(t||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),w=r=>l(s({},"__esModule",{value:!0}),r);var B={};P(B,{IconParasol:()=>c,default:()=>x});module.exports=w(B);var n=i(require("react"));var a=i(require("react")),C=({children:r,size:t=24,ariaLabel:e,color:p,ariaHidden:o=!0,style:h,...u})=>a.default.createElement("svg",{...u,"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:p,...h}},e&&!o&&a.default.createElement("title",null,e),r);var c=r=>n.default.createElement(C,{...r,ariaLabel:"parasol,umbrella,vacation"},n.default.createElement("g",{"clip-path":"url(#clip0_9082_25720)"},n.default.createElement("path",{d:"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),n.default.createElement("path",{d:"M11.668 11.4229L16.7513 20.2274",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),n.default.createElement("path",{d:"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),n.default.createElement("defs",null,n.default.createElement("clipPath",{id:"clip0_9082_25720"},n.default.createElement("rect",{width:"24",height:"24",fill:"white"})))),x=c;0&&(module.exports={IconParasol});
1
+ "use strict";var m=Object.create;var s=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var k=(r,t)=>{for(var e in t)s(r,e,{get:t[e],enumerable:!0})},l=(r,t,e,p)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of f(t))!P.call(r,o)&&o!==e&&s(r,o,{get:()=>t[o],enumerable:!(p=d(t,o))||p.enumerable});return r};var i=(r,t,e)=>(e=r!=null?m(g(r)):{},l(t||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),w=r=>l(s({},"__esModule",{value:!0}),r);var B={};k(B,{IconParasol:()=>c,default:()=>x});module.exports=w(B);var n=i(require("react"));var a=i(require("react")),C=({children:r,size:t=24,ariaLabel:e,color:p,ariaHidden:o=!0,style:h,...u})=>a.default.createElement("svg",{...u,"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:p,...h}},e&&!o&&a.default.createElement("title",null,e),r);var c=r=>n.default.createElement(C,{...r,ariaLabel:"parasol,umbrella,vacation"},n.default.createElement("g",{clipPath:"url(#clip0_9082_25720)"},n.default.createElement("path",{d:"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),n.default.createElement("path",{d:"M11.668 11.4229L16.7513 20.2274",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),n.default.createElement("path",{d:"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),n.default.createElement("defs",null,n.default.createElement("clipPath",{id:"clip0_9082_25720"},n.default.createElement("rect",{width:"24",height:"24",fill:"white"})))),x=c;0&&(module.exports={IconParasol});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconParasol: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"parasol,umbrella,vacation\">\n <g clip-path=\"url(#clip0_9082_25720)\">\n <path\n d=\"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M11.668 11.4229L16.7513 20.2274\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_9082_25720\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,iBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,6BACpC,EAAAC,QAAA,cAAC,KAAE,YAAU,0BACX,EAAAA,QAAA,cAAC,QACC,EAAE,6PACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kCACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gHACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,oBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["IconParasol_exports","__export","IconParasol","IconParasol_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
1
+ {"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconParasol: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"parasol,umbrella,vacation\">\n <g clipPath=\"url(#clip0_9082_25720)\">\n <path\n d=\"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M11.668 11.4229L16.7513 20.2274\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_9082_25720\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,iBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,6BACpC,EAAAC,QAAA,cAAC,KAAE,SAAS,0BACV,EAAAA,QAAA,cAAC,QACC,EAAE,6PACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kCACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gHACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,oBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["IconParasol_exports","__export","IconParasol","IconParasol_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
@@ -1,2 +1,2 @@
1
- import r from"react";import p from"react";var s=({children:e,size:t=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:l,...i})=>p.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:a,...l}},n&&!o&&p.createElement("title",null,n),e);var C=e=>r.createElement(s,{...e,ariaLabel:"parasol,umbrella,vacation"},r.createElement("g",{"clip-path":"url(#clip0_9082_25720)"},r.createElement("path",{d:"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M11.668 11.4229L16.7513 20.2274",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),r.createElement("defs",null,r.createElement("clipPath",{id:"clip0_9082_25720"},r.createElement("rect",{width:"24",height:"24",fill:"white"})))),d=C;export{C as IconParasol,d as default};
1
+ import r from"react";import p from"react";var s=({children:e,size:t=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:l,...i})=>p.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:a,...l}},n&&!o&&p.createElement("title",null,n),e);var C=e=>r.createElement(s,{...e,ariaLabel:"parasol,umbrella,vacation"},r.createElement("g",{clipPath:"url(#clip0_9082_25720)"},r.createElement("path",{d:"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M11.668 11.4229L16.7513 20.2274",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),r.createElement("defs",null,r.createElement("clipPath",{id:"clip0_9082_25720"},r.createElement("rect",{width:"24",height:"24",fill:"white"})))),d=C;export{C as IconParasol,d as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconParasol: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"parasol,umbrella,vacation\">\n <g clip-path=\"url(#clip0_9082_25720)\">\n <path\n d=\"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M11.668 11.4229L16.7513 20.2274\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_9082_25720\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,6BACpCC,EAAA,cAAC,KAAE,YAAU,0BACXA,EAAA,cAAC,QACC,EAAE,6PACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,kCACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,gHACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EACAA,EAAA,cAAC,YACCA,EAAA,cAAC,YAAS,GAAG,oBACXA,EAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
1
+ {"version":3,"sources":["../src/IconParasol/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconParasol: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"parasol,umbrella,vacation\">\n <g clipPath=\"url(#clip0_9082_25720)\">\n <path\n d=\"M20.2279 7.2497C17.6046 2.70592 11.7945 1.14911 7.25068 3.77246C2.7069 6.39581 1.15008 12.2059 3.77344 16.7497C5.07393 14.78 6.90221 13.7244 8.8012 13.8469C10.5588 11.6133 12.387 10.5578 15.2002 10.1525C16.0436 8.44668 17.8718 7.39109 20.2279 7.2497Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M11.668 11.4229L16.7513 20.2274\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M15.0489 9.89011C12.4472 5.54365 9.02082 2.85323 7.298 3.8479C5.57819 4.84083 6.18982 9.14003 8.64237 13.5583\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_9082_25720\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconParasol;\n","import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,6BACpCC,EAAA,cAAC,KAAE,SAAS,0BACVA,EAAA,cAAC,QACC,EAAE,6PACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,kCACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,gHACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EACAA,EAAA,cAAC,YACCA,EAAA,cAAC,YAAS,GAAG,oBACXA,EAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconParasol","props","React","CentralIconBase","IconParasol_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var m=Object.create;var l=Object.defineProperty;var C=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var k=(r,e)=>{for(var t in e)l(r,t,{get:e[t],enumerable:!0})},a=(r,e,t,p)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of d(e))!g.call(r,n)&&n!==t&&l(r,n,{get:()=>e[n],enumerable:!(p=C(e,n))||p.enumerable});return r};var i=(r,e,t)=>(t=r!=null?m(f(r)):{},a(e||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t,r)),w=r=>a(l({},"__esModule",{value:!0}),r);var B={};k(B,{IconRuler:()=>c,default:()=>x});module.exports=w(B);var o=i(require("react"));var s=i(require("react")),u=({children:r,size:e=24,ariaLabel:t,color:p,ariaHidden:n=!0,style:h,...L})=>s.default.createElement("svg",{...L,"aria-hidden":n,role:n?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,...h}},t&&!n&&s.default.createElement("title",null,t),r);var c=r=>o.default.createElement(u,{...r,ariaLabel:"ruler"},o.default.createElement("g",{"clip-path":"url(#clip0_6508_53999)"},o.default.createElement("path",{d:"M22.5 7.8L16.25 1.5L12.375 5.375L8.875 8.875L5.375 12.375L1.5 16.25L7.75 22.5L22.5 7.8Z",stroke:"currentColor",strokeLinecap:"square"}),o.default.createElement("path",{d:"M8.875 8.875L11.75 11.75",stroke:"currentColor",strokeLinecap:"square"}),o.default.createElement("path",{d:"M12.375 5.375L13.5 6.5",stroke:"currentColor",strokeLinecap:"square"}),o.default.createElement("path",{d:"M5.375 12.375L6.5 13.5",stroke:"currentColor",strokeLinecap:"square"})),o.default.createElement("defs",null,o.default.createElement("clipPath",{id:"clip0_6508_53999"},o.default.createElement("rect",{width:"24",height:"24",fill:"white"})))),x=c;0&&(module.exports={IconRuler});
1
+ "use strict";var m=Object.create;var l=Object.defineProperty;var C=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var P=(r,e)=>{for(var t in e)l(r,t,{get:e[t],enumerable:!0})},a=(r,e,t,p)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of d(e))!g.call(r,n)&&n!==t&&l(r,n,{get:()=>e[n],enumerable:!(p=C(e,n))||p.enumerable});return r};var i=(r,e,t)=>(t=r!=null?m(f(r)):{},a(e||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t,r)),k=r=>a(l({},"__esModule",{value:!0}),r);var x={};P(x,{IconRuler:()=>c,default:()=>w});module.exports=k(x);var o=i(require("react"));var s=i(require("react")),u=({children:r,size:e=24,ariaLabel:t,color:p,ariaHidden:n=!0,style:h,...L})=>s.default.createElement("svg",{...L,"aria-hidden":n,role:n?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,...h}},t&&!n&&s.default.createElement("title",null,t),r);var c=r=>o.default.createElement(u,{...r,ariaLabel:"ruler"},o.default.createElement("g",{clipPath:"url(#clip0_6508_53999)"},o.default.createElement("path",{d:"M22.5 7.8L16.25 1.5L12.375 5.375L8.875 8.875L5.375 12.375L1.5 16.25L7.75 22.5L22.5 7.8Z",stroke:"currentColor",strokeLinecap:"square"}),o.default.createElement("path",{d:"M8.875 8.875L11.75 11.75",stroke:"currentColor",strokeLinecap:"square"}),o.default.createElement("path",{d:"M12.375 5.375L13.5 6.5",stroke:"currentColor",strokeLinecap:"square"}),o.default.createElement("path",{d:"M5.375 12.375L6.5 13.5",stroke:"currentColor",strokeLinecap:"square"})),o.default.createElement("defs",null,o.default.createElement("clipPath",{id:"clip0_6508_53999"},o.default.createElement("rect",{width:"24",height:"24",fill:"white"})))),w=c;0&&(module.exports={IconRuler});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconRuler/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRuler: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"ruler\">\n <g clip-path=\"url(#clip0_6508_53999)\">\n <path\n d=\"M22.5 7.8L16.25 1.5L12.375 5.375L8.875 8.875L5.375 12.375L1.5 16.25L7.75 22.5L22.5 7.8Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.875 8.875L11.75 11.75\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12.375 5.375L13.5 6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M5.375 12.375L6.5 13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_6508_53999\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconRuler;\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,SACpC,EAAAC,QAAA,cAAC,KAAE,YAAU,0BACX,EAAAA,QAAA,cAAC,QACC,EAAE,0FACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2BACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,oBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["IconRuler_exports","__export","IconRuler","IconRuler_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconRuler","props","React","CentralIconBase","IconRuler_default"]}
1
+ {"version":3,"sources":["../src/IconRuler/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRuler: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"ruler\">\n <g clipPath=\"url(#clip0_6508_53999)\">\n <path\n d=\"M22.5 7.8L16.25 1.5L12.375 5.375L8.875 8.875L5.375 12.375L1.5 16.25L7.75 22.5L22.5 7.8Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.875 8.875L11.75 11.75\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12.375 5.375L13.5 6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M5.375 12.375L6.5 13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_6508_53999\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconRuler;\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,SACpC,EAAAC,QAAA,cAAC,KAAE,SAAS,0BACV,EAAAA,QAAA,cAAC,QACC,EAAE,0FACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2BACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,oBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["IconRuler_exports","__export","IconRuler","IconRuler_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconRuler","props","React","CentralIconBase","IconRuler_default"]}
@@ -1,2 +1,2 @@
1
- import r from"react";import p from"react";var l=({children:t,size:e=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:a,...i})=>p.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:s,...a}},n&&!o&&p.createElement("title",null,n),t);var u=t=>r.createElement(l,{...t,ariaLabel:"ruler"},r.createElement("g",{"clip-path":"url(#clip0_6508_53999)"},r.createElement("path",{d:"M22.5 7.8L16.25 1.5L12.375 5.375L8.875 8.875L5.375 12.375L1.5 16.25L7.75 22.5L22.5 7.8Z",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M8.875 8.875L11.75 11.75",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M12.375 5.375L13.5 6.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M5.375 12.375L6.5 13.5",stroke:"currentColor",strokeLinecap:"square"})),r.createElement("defs",null,r.createElement("clipPath",{id:"clip0_6508_53999"},r.createElement("rect",{width:"24",height:"24",fill:"white"})))),C=u;export{u as IconRuler,C as default};
1
+ import r from"react";import p from"react";var l=({children:t,size:e=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:a,...i})=>p.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:s,...a}},n&&!o&&p.createElement("title",null,n),t);var u=t=>r.createElement(l,{...t,ariaLabel:"ruler"},r.createElement("g",{clipPath:"url(#clip0_6508_53999)"},r.createElement("path",{d:"M22.5 7.8L16.25 1.5L12.375 5.375L8.875 8.875L5.375 12.375L1.5 16.25L7.75 22.5L22.5 7.8Z",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M8.875 8.875L11.75 11.75",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M12.375 5.375L13.5 6.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M5.375 12.375L6.5 13.5",stroke:"currentColor",strokeLinecap:"square"})),r.createElement("defs",null,r.createElement("clipPath",{id:"clip0_6508_53999"},r.createElement("rect",{width:"24",height:"24",fill:"white"})))),C=u;export{u as IconRuler,C as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconRuler/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRuler: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"ruler\">\n <g clip-path=\"url(#clip0_6508_53999)\">\n <path\n d=\"M22.5 7.8L16.25 1.5L12.375 5.375L8.875 8.875L5.375 12.375L1.5 16.25L7.75 22.5L22.5 7.8Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.875 8.875L11.75 11.75\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12.375 5.375L13.5 6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M5.375 12.375L6.5 13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_6508_53999\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconRuler;\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,SACpCC,EAAA,cAAC,KAAE,YAAU,0BACXA,EAAA,cAAC,QACC,EAAE,0FACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,2BACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,CACF,EACAA,EAAA,cAAC,YACCA,EAAA,cAAC,YAAS,GAAG,oBACXA,EAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRuler","props","React","CentralIconBase","IconRuler_default"]}
1
+ {"version":3,"sources":["../src/IconRuler/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRuler: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"ruler\">\n <g clipPath=\"url(#clip0_6508_53999)\">\n <path\n d=\"M22.5 7.8L16.25 1.5L12.375 5.375L8.875 8.875L5.375 12.375L1.5 16.25L7.75 22.5L22.5 7.8Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.875 8.875L11.75 11.75\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12.375 5.375L13.5 6.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M5.375 12.375L6.5 13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_6508_53999\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconRuler;\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,SACpCC,EAAA,cAAC,KAAE,SAAS,0BACVA,EAAA,cAAC,QACC,EAAE,0FACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,2BACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,cAAc,SAChB,CACF,EACAA,EAAA,cAAC,YACCA,EAAA,cAAC,YAAS,GAAG,oBACXA,EAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRuler","props","React","CentralIconBase","IconRuler_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var f=Object.create;var i=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var C=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var w=(r,t)=>{for(var e in t)i(r,e,{get:t[e],enumerable:!0})},l=(r,t,e,p)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of g(t))!d.call(r,o)&&o!==e&&i(r,o,{get:()=>t[o],enumerable:!(p=L(t,o))||p.enumerable});return r};var a=(r,t,e)=>(e=r!=null?f(C(r)):{},l(t||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>l(i({},"__esModule",{value:!0}),r);var I={};w(I,{IconSubscriptionTick2:()=>u,default:()=>B});module.exports=x(I);var n=a(require("react"));var s=a(require("react")),c=({children:r,size:t=24,ariaLabel:e,color:p,ariaHidden:o=!0,style:h,...m})=>s.default.createElement("svg",{...m,"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:p,...h}},e&&!o&&s.default.createElement("title",null,e),r);var u=r=>n.default.createElement(c,{...r,ariaLabel:"subscription-tick-2,verify"},n.default.createElement("g",{"clip-path":"url(#clip0_9186_28824)"},n.default.createElement("path",{d:"M12 1.5L9 4.5H4.5V9L1.5 12L4.5 15V19.5H9L12 22.5L15 19.5H19.5V15L22.5 12L19.5 9V4.5H15L12 1.5Z",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M8.25 13.225L10.7955 15.5L15.25 9",stroke:"currentColor",strokeLinecap:"square"})),n.default.createElement("defs",null,n.default.createElement("clipPath",{id:"clip0_9186_28824"},n.default.createElement("rect",{width:"24",height:"24",fill:"white"})))),B=u;0&&(module.exports={IconSubscriptionTick2});
1
+ "use strict";var f=Object.create;var i=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var C=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var P=(r,t)=>{for(var e in t)i(r,e,{get:t[e],enumerable:!0})},l=(r,t,e,p)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of g(t))!d.call(r,o)&&o!==e&&i(r,o,{get:()=>t[o],enumerable:!(p=L(t,o))||p.enumerable});return r};var a=(r,t,e)=>(e=r!=null?f(C(r)):{},l(t||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),w=r=>l(i({},"__esModule",{value:!0}),r);var B={};P(B,{IconSubscriptionTick2:()=>u,default:()=>x});module.exports=w(B);var n=a(require("react"));var s=a(require("react")),c=({children:r,size:t=24,ariaLabel:e,color:p,ariaHidden:o=!0,style:h,...m})=>s.default.createElement("svg",{...m,"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:p,...h}},e&&!o&&s.default.createElement("title",null,e),r);var u=r=>n.default.createElement(c,{...r,ariaLabel:"subscription-tick-2,verify"},n.default.createElement("g",{clipPath:"url(#clip0_9186_28824)"},n.default.createElement("path",{d:"M12 1.5L9 4.5H4.5V9L1.5 12L4.5 15V19.5H9L12 22.5L15 19.5H19.5V15L22.5 12L19.5 9V4.5H15L12 1.5Z",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M8.25 13.225L10.7955 15.5L15.25 9",stroke:"currentColor",strokeLinecap:"square"})),n.default.createElement("defs",null,n.default.createElement("clipPath",{id:"clip0_9186_28824"},n.default.createElement("rect",{width:"24",height:"24",fill:"white"})))),x=u;0&&(module.exports={IconSubscriptionTick2});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconSubscriptionTick2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSubscriptionTick2: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"subscription-tick-2,verify\">\n <g clip-path=\"url(#clip0_9186_28824)\">\n <path\n d=\"M12 1.5L9 4.5H4.5V9L1.5 12L4.5 15V19.5H9L12 22.5L15 19.5H19.5V15L22.5 12L19.5 9V4.5H15L12 1.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.25 13.225L10.7955 15.5L15.25 9\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_9186_28824\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconSubscriptionTick2;\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,8BACpC,EAAAC,QAAA,cAAC,KAAE,YAAU,0BACX,EAAAA,QAAA,cAAC,QACC,EAAE,iGACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oCACF,OAAO,eACP,cAAc,SAChB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,oBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["IconSubscriptionTick2_exports","__export","IconSubscriptionTick2","IconSubscriptionTick2_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconSubscriptionTick2","props","React","CentralIconBase","IconSubscriptionTick2_default"]}
1
+ {"version":3,"sources":["../src/IconSubscriptionTick2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSubscriptionTick2: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"subscription-tick-2,verify\">\n <g clipPath=\"url(#clip0_9186_28824)\">\n <path\n d=\"M12 1.5L9 4.5H4.5V9L1.5 12L4.5 15V19.5H9L12 22.5L15 19.5H19.5V15L22.5 12L19.5 9V4.5H15L12 1.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.25 13.225L10.7955 15.5L15.25 9\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_9186_28824\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconSubscriptionTick2;\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,8BACpC,EAAAC,QAAA,cAAC,KAAE,SAAS,0BACV,EAAAA,QAAA,cAAC,QACC,EAAE,iGACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oCACF,OAAO,eACP,cAAc,SAChB,CACF,EACA,EAAAA,QAAA,cAAC,YACC,EAAAA,QAAA,cAAC,YAAS,GAAG,oBACX,EAAAA,QAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["IconSubscriptionTick2_exports","__export","IconSubscriptionTick2","IconSubscriptionTick2_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconSubscriptionTick2","props","React","CentralIconBase","IconSubscriptionTick2_default"]}
@@ -1,2 +1,2 @@
1
- import r from"react";import p from"react";var i=({children:e,size:t=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:l,...a})=>p.createElement("svg",{...a,"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:s,...l}},n&&!o&&p.createElement("title",null,n),e);var c=e=>r.createElement(i,{...e,ariaLabel:"subscription-tick-2,verify"},r.createElement("g",{"clip-path":"url(#clip0_9186_28824)"},r.createElement("path",{d:"M12 1.5L9 4.5H4.5V9L1.5 12L4.5 15V19.5H9L12 22.5L15 19.5H19.5V15L22.5 12L19.5 9V4.5H15L12 1.5Z",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M8.25 13.225L10.7955 15.5L15.25 9",stroke:"currentColor",strokeLinecap:"square"})),r.createElement("defs",null,r.createElement("clipPath",{id:"clip0_9186_28824"},r.createElement("rect",{width:"24",height:"24",fill:"white"})))),L=c;export{c as IconSubscriptionTick2,L as default};
1
+ import r from"react";import p from"react";var i=({children:e,size:t=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:l,...a})=>p.createElement("svg",{...a,"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:s,...l}},n&&!o&&p.createElement("title",null,n),e);var c=e=>r.createElement(i,{...e,ariaLabel:"subscription-tick-2,verify"},r.createElement("g",{clipPath:"url(#clip0_9186_28824)"},r.createElement("path",{d:"M12 1.5L9 4.5H4.5V9L1.5 12L4.5 15V19.5H9L12 22.5L15 19.5H19.5V15L22.5 12L19.5 9V4.5H15L12 1.5Z",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M8.25 13.225L10.7955 15.5L15.25 9",stroke:"currentColor",strokeLinecap:"square"})),r.createElement("defs",null,r.createElement("clipPath",{id:"clip0_9186_28824"},r.createElement("rect",{width:"24",height:"24",fill:"white"})))),L=c;export{c as IconSubscriptionTick2,L as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconSubscriptionTick2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSubscriptionTick2: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"subscription-tick-2,verify\">\n <g clip-path=\"url(#clip0_9186_28824)\">\n <path\n d=\"M12 1.5L9 4.5H4.5V9L1.5 12L4.5 15V19.5H9L12 22.5L15 19.5H19.5V15L22.5 12L19.5 9V4.5H15L12 1.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.25 13.225L10.7955 15.5L15.25 9\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_9186_28824\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconSubscriptionTick2;\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,8BACpCC,EAAA,cAAC,KAAE,YAAU,0BACXA,EAAA,cAAC,QACC,EAAE,iGACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,oCACF,OAAO,eACP,cAAc,SAChB,CACF,EACAA,EAAA,cAAC,YACCA,EAAA,cAAC,YAAS,GAAG,oBACXA,EAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSubscriptionTick2","props","React","CentralIconBase","IconSubscriptionTick2_default"]}
1
+ {"version":3,"sources":["../src/IconSubscriptionTick2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSubscriptionTick2: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"subscription-tick-2,verify\">\n <g clipPath=\"url(#clip0_9186_28824)\">\n <path\n d=\"M12 1.5L9 4.5H4.5V9L1.5 12L4.5 15V19.5H9L12 22.5L15 19.5H19.5V15L22.5 12L19.5 9V4.5H15L12 1.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M8.25 13.225L10.7955 15.5L15.25 9\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_9186_28824\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconSubscriptionTick2;\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,8BACpCC,EAAA,cAAC,KAAE,SAAS,0BACVA,EAAA,cAAC,QACC,EAAE,iGACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,oCACF,OAAO,eACP,cAAc,SAChB,CACF,EACAA,EAAA,cAAC,YACCA,EAAA,cAAC,YAAS,GAAG,oBACXA,EAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSubscriptionTick2","props","React","CentralIconBase","IconSubscriptionTick2_default"]}