@eclass/ui-kit 1.42.0 → 1.43.0

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 (35) hide show
  1. package/dist/eclass-ui-kit.es.js +1041 -5
  2. package/dist/eclass-ui-kit.es.js.map +1 -1
  3. package/dist/eclass-ui-kit.umd.js +50 -50
  4. package/dist/eclass-ui-kit.umd.js.map +1 -1
  5. package/dist/molecules/Buttons/Btn.d.ts +2 -1
  6. package/dist/molecules/Buttons/BtnLink.d.ts +2 -1
  7. package/dist/molecules/Buttons/BtnPrimary.d.ts +1 -1
  8. package/dist/molecules/Buttons/BtnSecondary.d.ts +1 -1
  9. package/dist/molecules/Buttons/BtnTertiary.d.ts +2 -1
  10. package/dist/organisms/Events/Events.d.ts +2 -0
  11. package/dist/organisms/Events/index.d.ts +1 -0
  12. package/dist/organisms/Resources/Icons/Avi.d.ts +2 -0
  13. package/dist/organisms/Resources/Icons/Csv.d.ts +2 -0
  14. package/dist/organisms/Resources/Icons/Doc.d.ts +2 -0
  15. package/dist/organisms/Resources/Icons/Docx.d.ts +2 -0
  16. package/dist/organisms/Resources/Icons/Gif.d.ts +2 -0
  17. package/dist/organisms/Resources/Icons/Icons.d.ts +6 -0
  18. package/dist/organisms/Resources/Icons/Jpeg.d.ts +2 -0
  19. package/dist/organisms/Resources/Icons/Jpg.d.ts +2 -0
  20. package/dist/organisms/Resources/Icons/Mkv.d.ts +2 -0
  21. package/dist/organisms/Resources/Icons/Mp3.d.ts +2 -0
  22. package/dist/organisms/Resources/Icons/Mp4.d.ts +2 -0
  23. package/dist/organisms/Resources/Icons/Pdf.d.ts +2 -0
  24. package/dist/organisms/Resources/Icons/Png.d.ts +2 -0
  25. package/dist/organisms/Resources/Icons/Ppt.d.ts +2 -0
  26. package/dist/organisms/Resources/Icons/Pptx.d.ts +2 -0
  27. package/dist/organisms/Resources/Icons/Wav.d.ts +2 -0
  28. package/dist/organisms/Resources/Icons/Xls.d.ts +2 -0
  29. package/dist/organisms/Resources/Icons/Xlsx.d.ts +2 -0
  30. package/dist/organisms/Resources/Icons/index.d.ts +18 -0
  31. package/dist/organisms/Resources/Resources.d.ts +12 -0
  32. package/dist/organisms/Resources/index.d.ts +1 -0
  33. package/dist/organisms/index.d.ts +2 -0
  34. package/dist/tsconfig.types.tsbuildinfo +1 -1
  35. package/package.json +1 -1
@@ -29542,6 +29542,7 @@ function Btn({
29542
29542
  m: m2 = "0",
29543
29543
  onClick,
29544
29544
  rightIcon,
29545
+ role = "button",
29545
29546
  rounded = false,
29546
29547
  size: size2 = "regular",
29547
29548
  touchDark = false,
@@ -29571,7 +29572,7 @@ function Btn({
29571
29572
  children: /* @__PURE__ */ jsx(Button, {
29572
29573
  "aria-label": ariaLabel,
29573
29574
  id: id2,
29574
- role: "button",
29575
+ role,
29575
29576
  bg: colorMain,
29576
29577
  borderRadius,
29577
29578
  color: color2,
@@ -29647,6 +29648,7 @@ function BtnPrimary({
29647
29648
  isLoading = false,
29648
29649
  onClick,
29649
29650
  rightIcon,
29651
+ role = "button",
29650
29652
  size: size2 = "regular",
29651
29653
  type = "button",
29652
29654
  tabIndex,
@@ -29662,6 +29664,7 @@ function BtnPrimary({
29662
29664
  m: m2,
29663
29665
  onClick,
29664
29666
  rightIcon,
29667
+ role,
29665
29668
  size: size2,
29666
29669
  type,
29667
29670
  tabIndex,
@@ -29679,6 +29682,7 @@ function BtnSecondary({
29679
29682
  isLoading = false,
29680
29683
  onClick,
29681
29684
  rightIcon,
29685
+ role = "button",
29682
29686
  size: size2 = "regular",
29683
29687
  type = "button",
29684
29688
  tabIndex,
@@ -29701,6 +29705,7 @@ function BtnSecondary({
29701
29705
  m: m2,
29702
29706
  onClick,
29703
29707
  rightIcon,
29708
+ role,
29704
29709
  size: size2,
29705
29710
  touchDark: true,
29706
29711
  type,
@@ -29721,6 +29726,7 @@ function BtnTertiary({
29721
29726
  onMouseEnter,
29722
29727
  onMouseLeave,
29723
29728
  rightIcon,
29729
+ role = "button",
29724
29730
  type = "button",
29725
29731
  tabIndex,
29726
29732
  withoutColor = false
@@ -29774,7 +29780,7 @@ function BtnTertiary({
29774
29780
  return /* @__PURE__ */ jsx(Button, {
29775
29781
  "aria-label": ariaLabel,
29776
29782
  id: id2,
29777
- role: "button",
29783
+ role,
29778
29784
  type,
29779
29785
  tabIndex,
29780
29786
  background: "transparent",
@@ -29821,7 +29827,7 @@ function BtnTertiary({
29821
29827
  }
29822
29828
  BtnTertiary.displayName = "BtnTertiary";
29823
29829
  function BtnLink({
29824
- as = "button",
29830
+ as = "a",
29825
29831
  ariaLabel,
29826
29832
  children,
29827
29833
  fontSize = "0.875rem",
@@ -29829,6 +29835,7 @@ function BtnLink({
29829
29835
  id: id2,
29830
29836
  m: m2 = "0",
29831
29837
  onClick,
29838
+ role = "link",
29832
29839
  tabIndex,
29833
29840
  textDecorationLine = true
29834
29841
  }) {
@@ -29845,7 +29852,7 @@ function BtnLink({
29845
29852
  as,
29846
29853
  "aria-label": ariaLabel,
29847
29854
  id: id2,
29848
- role: "button",
29855
+ role,
29849
29856
  backgroundColor: "transparent",
29850
29857
  borderStyle: "none",
29851
29858
  className: "linkButton",
@@ -31976,5 +31983,1034 @@ function ModalAlert({
31976
31983
  });
31977
31984
  }
31978
31985
  ModalAlert.displayName = "ModalAlert";
31979
- export { Alert, Btn, BtnLink, BtnPrimary, BtnSecondary, BtnTertiary, CourseList, CourseStatus, FlashNotification, index as Icons, Label, ModalAlert, NewTooltip, Progress, Ripples, TinyAlert, dataFake, maxWidthCoursesList, theme, useFlashNotification, vars };
31986
+ const Events = () => {
31987
+ return /* @__PURE__ */ jsx("div", {
31988
+ children: "Hola soy un Evento"
31989
+ });
31990
+ };
31991
+ const Avi = () => {
31992
+ return /* @__PURE__ */ jsxs(Icon, {
31993
+ width: "32px",
31994
+ height: "32px",
31995
+ viewBox: "0 0 32 32",
31996
+ fill: "none",
31997
+ xmlns: "http://www.w3.org/2000/svg",
31998
+ children: [/* @__PURE__ */ jsxs("g", {
31999
+ clipPath: "url(#clip0_2871_5797)",
32000
+ children: [/* @__PURE__ */ jsx("path", {
32001
+ d: "M20 1V9H28",
32002
+ stroke: "#B0CFE0",
32003
+ strokeWidth: "2",
32004
+ strokeMiterlimit: "10"
32005
+ }), /* @__PURE__ */ jsx("path", {
32006
+ d: "M28 13V9L20 1H4V13",
32007
+ stroke: "#B0CFE0",
32008
+ strokeWidth: "2",
32009
+ strokeMiterlimit: "10",
32010
+ strokeLinecap: "square"
32011
+ }), /* @__PURE__ */ jsx("path", {
32012
+ d: "M4 27V31H28V27",
32013
+ stroke: "#B0CFE0",
32014
+ strokeWidth: "2",
32015
+ strokeMiterlimit: "10",
32016
+ strokeLinecap: "square"
32017
+ }), /* @__PURE__ */ jsx("path", {
32018
+ d: "M13 23L12.7 21.9H10.8L10.6 23H8.90002L10.8 17.3H12.9L14.8 23H13ZM12.4 20.7L12.2 19.8C12.1 19.6 12.1 19.3 12 19C11.9 18.7 11.9 18.4 11.8 18.3C11.8 18.4 11.7 18.7 11.7 19C11.7 19.3 11.5 19.9 11.2 20.8H12.4V20.7Z",
32019
+ fill: "#B0CFE0"
32020
+ }), /* @__PURE__ */ jsx("path", {
32021
+ d: "M18.6 17.3H20.3L18.4 23H16.6L14.7 17.3H16.4L17.2 20.2C17.4 20.8 17.4 21.3 17.5 21.5C17.5 21.3 17.6 21.1 17.6 20.8C17.6 20.5 17.7 20.3 17.7 20.2L18.6 17.3Z",
32022
+ fill: "#B0CFE0"
32023
+ }), /* @__PURE__ */ jsx("path", {
32024
+ d: "M20.9 23V17.3H22.5V23H20.9Z",
32025
+ fill: "#B0CFE0"
32026
+ }), /* @__PURE__ */ jsx("path", {
32027
+ d: "M31 13H1V27H31V13Z",
32028
+ stroke: "#B0CFE0",
32029
+ strokeWidth: "2",
32030
+ strokeMiterlimit: "10",
32031
+ strokeLinecap: "square"
32032
+ })]
32033
+ }), /* @__PURE__ */ jsx("defs", {
32034
+ children: /* @__PURE__ */ jsx("clipPath", {
32035
+ id: "clip0_2871_5797",
32036
+ children: /* @__PURE__ */ jsx("rect", {
32037
+ width: "32",
32038
+ height: "32",
32039
+ fill: "white"
32040
+ })
32041
+ })
32042
+ })]
32043
+ });
32044
+ };
32045
+ const Csv = () => {
32046
+ return /* @__PURE__ */ jsxs(Icon, {
32047
+ width: "32px",
32048
+ height: "32px",
32049
+ viewBox: "0 0 32 32",
32050
+ fill: "none",
32051
+ xmlns: "http://www.w3.org/2000/svg",
32052
+ children: [/* @__PURE__ */ jsxs("g", {
32053
+ clipPath: "url(#clip0_2871_5770)",
32054
+ children: [/* @__PURE__ */ jsx("path", {
32055
+ d: "M20 1V9H28",
32056
+ stroke: "#B0CFE0",
32057
+ strokeWidth: "2",
32058
+ strokeMiterlimit: "10"
32059
+ }), /* @__PURE__ */ jsx("path", {
32060
+ d: "M28 13V9L20 1H4V13",
32061
+ stroke: "#B0CFE0",
32062
+ strokeWidth: "2",
32063
+ strokeMiterlimit: "10",
32064
+ strokeLinecap: "square"
32065
+ }), /* @__PURE__ */ jsx("path", {
32066
+ d: "M4 27V31H28V27",
32067
+ stroke: "#B0CFE0",
32068
+ strokeWidth: "2",
32069
+ strokeMiterlimit: "10",
32070
+ strokeLinecap: "square"
32071
+ }), /* @__PURE__ */ jsx("path", {
32072
+ d: "M11.5 18.5C11.1 18.5 10.8 18.7 10.6 19C10.4 19.3 10.3 19.7 10.3 20.2C10.3 21.3 10.7 21.8 11.6 21.8C11.9 21.8 12.1 21.8 12.3 21.7C12.5 21.6 12.8 21.5 13 21.4V22.7C12.5 22.9 12 23 11.4 23C10.5 23 9.89995 22.8 9.39995 22.2C8.89995 21.6 8.69995 21 8.69995 20C8.69995 19.4 8.79995 18.9 8.99995 18.4C9.19995 17.9 9.49995 17.6 9.99995 17.4C10.5 17.2 10.9 17 11.5 17C12.1 17 12.7 17.1 13.3 17.4L12.8 18.6C12.6 18.5 12.4 18.4 12.2 18.4C12 18.4 11.7 18.5 11.5 18.5Z",
32073
+ fill: "#B0CFE0"
32074
+ }), /* @__PURE__ */ jsx("path", {
32075
+ d: "M17.9 21.3C17.9 21.7 17.8 22 17.6 22.2C17.4 22.4 17.2 22.7 16.8 22.8C16.4 22.9 16.1 23 15.6 23C15.2 23 14.9 23 14.6 22.9C14.3 22.8 14.1 22.8 13.8 22.6V21.2C14.1 21.4 14.4 21.5 14.7 21.6C15 21.7 15.3 21.7 15.6 21.7C15.8 21.7 16 21.7 16.1 21.6C16.2 21.5 16.3 21.4 16.3 21.3C16.3 21.2 16.3 21.2 16.2 21.1C16.1 21 16.1 21.1 16 21C15.9 20.9 15.7 20.8 15.2 20.6C14.8 20.4 14.5 20.3 14.4 20.1C14.3 19.9 14.1 19.8 14 19.6C13.9 19.4 13.9 19.2 13.9 18.9C13.9 18.4 14.1 18 14.5 17.7C14.9 17.4 15.4 17.3 16.1 17.3C16.7 17.3 17.3 17.4 17.9 17.7L17.4 18.9C16.9 18.7 16.4 18.5 16 18.5C15.8 18.5 15.7 18.5 15.6 18.6C15.5 18.7 15.5 18.8 15.5 18.9C15.5 19 15.6 19.1 15.7 19.2C15.8 19.3 16.1 19.4 16.6 19.7C17.1 19.9 17.4 20.2 17.6 20.4C17.8 20.6 17.9 20.9 17.9 21.3Z",
32076
+ fill: "#B0CFE0"
32077
+ }), /* @__PURE__ */ jsx("path", {
32078
+ d: "M22 17.3H23.7L21.8 23H20L18.1 17.3H19.8L20.6 20.2C20.8 20.8 20.8 21.3 20.9 21.5C20.9 21.3 21 21.1 21 20.8C21 20.5 21.1 20.3 21.1 20.2L22 17.3Z",
32079
+ fill: "#B0CFE0"
32080
+ }), /* @__PURE__ */ jsx("path", {
32081
+ d: "M31 13H1V27H31V13Z",
32082
+ stroke: "#B0CFE0",
32083
+ strokeWidth: "2",
32084
+ strokeMiterlimit: "10",
32085
+ strokeLinecap: "square"
32086
+ })]
32087
+ }), /* @__PURE__ */ jsx("defs", {
32088
+ children: /* @__PURE__ */ jsx("clipPath", {
32089
+ id: "clip0_2871_5770",
32090
+ children: /* @__PURE__ */ jsx("rect", {
32091
+ width: "32",
32092
+ height: "32",
32093
+ fill: "white"
32094
+ })
32095
+ })
32096
+ })]
32097
+ });
32098
+ };
32099
+ const Doc = () => {
32100
+ return /* @__PURE__ */ jsxs(Icon, {
32101
+ width: "32px",
32102
+ height: "32px",
32103
+ viewBox: "0 0 32 32",
32104
+ fill: "none",
32105
+ xmlns: "http://www.w3.org/2000/svg",
32106
+ children: [/* @__PURE__ */ jsxs("g", {
32107
+ clipPath: "url(#clip0_2871_5732)",
32108
+ children: [/* @__PURE__ */ jsx("path", {
32109
+ d: "M20 1V9H28",
32110
+ stroke: "#B0CFE0",
32111
+ strokeWidth: "2",
32112
+ strokeMiterlimit: "10"
32113
+ }), /* @__PURE__ */ jsx("path", {
32114
+ d: "M28 13V9L20 1H4V13",
32115
+ stroke: "#B0CFE0",
32116
+ strokeWidth: "2",
32117
+ strokeMiterlimit: "10",
32118
+ strokeLinecap: "square"
32119
+ }), /* @__PURE__ */ jsx("path", {
32120
+ d: "M4 27V31H28V27",
32121
+ stroke: "#B0CFE0",
32122
+ strokeWidth: "2",
32123
+ strokeMiterlimit: "10",
32124
+ strokeLinecap: "square"
32125
+ }), /* @__PURE__ */ jsx("path", {
32126
+ d: "M12.7 20C12.7 21 12.4 21.7 11.9 22.2C11.4 22.7 10.7 23 9.70002 23H7.90002V17.3H9.90002C10.8 17.3 11.5 17.5 12 18C12.5 18.5 12.7 19.1 12.7 20ZM11.1 20.1C11.1 19.6 11 19.2 10.8 18.9C10.6 18.6 10.3 18.5 9.90002 18.5H9.40002V21.7H9.70002C10.2 21.7 10.5 21.6 10.7 21.3C10.9 21 11.1 20.6 11.1 20.1Z",
32127
+ fill: "#B0CFE0"
32128
+ }), /* @__PURE__ */ jsx("path", {
32129
+ d: "M19.1 20.1C19.1 21.1 18.9 21.8 18.4 22.3C17.9 22.8 17.2 23.1 16.3 23.1C15.4 23.1 14.7 22.8 14.2 22.3C13.7 21.8 13.5 21.1 13.5 20.1C13.5 19.1 13.7 18.4 14.2 17.9C14.7 17.4 15.4 17.1 16.3 17.1C17.2 17.1 17.9 17.3 18.4 17.8C18.9 18.3 19.1 19.2 19.1 20.1ZM15.2 20.1C15.2 21.2 15.6 21.8 16.4 21.8C16.8 21.8 17.1 21.7 17.3 21.4C17.5 21.1 17.6 20.7 17.6 20.1C17.6 19.5 17.5 19.1 17.3 18.8C17.1 18.5 16.8 18.4 16.4 18.4C15.6 18.5 15.2 19 15.2 20.1Z",
32130
+ fill: "#B0CFE0"
32131
+ }), /* @__PURE__ */ jsx("path", {
32132
+ d: "M22.7 18.5C22.3 18.5 22 18.7 21.8 19C21.6 19.3 21.5 19.7 21.5 20.2C21.5 21.3 21.9 21.8 22.8 21.8C23.1 21.8 23.3 21.8 23.5 21.7C23.7 21.6 24 21.5 24.2 21.4V22.7C23.7 22.9 23.2 23 22.6 23C21.7 23 21.1 22.8 20.6 22.2C20.1 21.6 19.9 21 19.9 20C19.9 19.4 20 18.9 20.2 18.4C20.4 17.9 20.7 17.6 21.2 17.4C21.7 17.2 22.1 17 22.7 17C23.3 17 23.9 17.1 24.5 17.4L24 18.8C23.8 18.7 23.6 18.6 23.4 18.6C23.2 18.6 22.9 18.5 22.7 18.5Z",
32133
+ fill: "#B0CFE0"
32134
+ }), /* @__PURE__ */ jsx("path", {
32135
+ d: "M31 13H1V27H31V13Z",
32136
+ stroke: "#B0CFE0",
32137
+ strokeWidth: "2",
32138
+ strokeMiterlimit: "10",
32139
+ strokeLinecap: "square"
32140
+ })]
32141
+ }), /* @__PURE__ */ jsx("defs", {
32142
+ children: /* @__PURE__ */ jsx("clipPath", {
32143
+ id: "clip0_2871_5732",
32144
+ children: /* @__PURE__ */ jsx("rect", {
32145
+ width: "32",
32146
+ height: "32",
32147
+ fill: "white"
32148
+ })
32149
+ })
32150
+ })]
32151
+ });
32152
+ };
32153
+ const Docx = () => {
32154
+ return /* @__PURE__ */ jsxs(Icon, {
32155
+ width: "32px",
32156
+ height: "32px",
32157
+ viewBox: "0 0 32 32",
32158
+ fill: "none",
32159
+ xmlns: "http://www.w3.org/2000/svg",
32160
+ children: [/* @__PURE__ */ jsxs("g", {
32161
+ clipPath: "url(#clip0_2871_5741)",
32162
+ children: [/* @__PURE__ */ jsx("path", {
32163
+ d: "M20 1V9H28",
32164
+ stroke: "#B0CFE0",
32165
+ strokeWidth: "2",
32166
+ strokeMiterlimit: "10"
32167
+ }), /* @__PURE__ */ jsx("path", {
32168
+ d: "M28 13V9L20 1H4V13",
32169
+ stroke: "#B0CFE0",
32170
+ strokeWidth: "2",
32171
+ strokeMiterlimit: "10",
32172
+ strokeLinecap: "square"
32173
+ }), /* @__PURE__ */ jsx("path", {
32174
+ d: "M4 27V31H28V27",
32175
+ stroke: "#B0CFE0",
32176
+ strokeWidth: "2",
32177
+ strokeMiterlimit: "10",
32178
+ strokeLinecap: "square"
32179
+ }), /* @__PURE__ */ jsx("path", {
32180
+ d: "M9.9 20C9.9 21 9.6 21.7 9.1 22.2C8.6 22.7 7.8 23 6.9 23H5V17.3H7C7.9 17.3 8.6 17.5 9.1 18C9.6 18.5 9.9 19.1 9.9 20ZM8.3 20.1C8.3 19.6 8.2 19.2 8 18.9C7.8 18.6 7.4 18.5 7 18.5H6.5V21.7H6.8C7.3 21.7 7.6 21.6 7.8 21.3C8 21 8.3 20.6 8.3 20.1Z",
32181
+ fill: "#B0CFE0"
32182
+ }), /* @__PURE__ */ jsx("path", {
32183
+ d: "M16.2 20.1C16.2 21.1 16 21.8 15.5 22.3C15 22.8 14.3 23.1 13.4 23.1C12.5 23.1 11.8 22.8 11.3 22.3C10.8 21.8 10.6 21.1 10.6 20.1C10.6 19.1 10.8 18.4 11.3 17.9C11.8 17.4 12.5 17.1 13.4 17.1C14.3 17.1 15 17.3 15.5 17.8C16 18.3 16.2 19.2 16.2 20.1ZM12.3 20.1C12.3 21.2 12.7 21.8 13.5 21.8C13.9 21.8 14.2 21.7 14.4 21.4C14.6 21.1 14.7 20.7 14.7 20.1C14.7 19.5 14.6 19.1 14.4 18.8C14.2 18.5 13.9 18.4 13.5 18.4C12.7 18.5 12.3 19 12.3 20.1Z",
32184
+ fill: "#B0CFE0"
32185
+ }), /* @__PURE__ */ jsx("path", {
32186
+ d: "M19.8 18.5C19.4 18.5 19.1 18.7 18.9 19C18.7 19.3 18.6 19.7 18.6 20.2C18.6 21.3 19 21.8 19.9 21.8C20.2 21.8 20.4 21.8 20.6 21.7C20.8 21.6 21.1 21.5 21.3 21.4V22.7C20.8 22.9 20.3 23 19.7 23C18.8 23 18.2 22.8 17.7 22.2C17.2 21.6 17 21.1 17 20.2C17 19.6 17.1 19.1 17.3 18.6C17.5 18.1 17.8 17.8 18.3 17.6C18.8 17.4 19.2 17.2 19.8 17.2C20.4 17.2 21 17.3 21.6 17.6L21.1 18.8C20.9 18.7 20.7 18.6 20.5 18.6C20.3 18.6 20 18.5 19.8 18.5Z",
32187
+ fill: "#B0CFE0"
32188
+ }), /* @__PURE__ */ jsx("path", {
32189
+ d: "M27.6 23H25.8L24.7 21.2L23.6 23H21.9L23.8 20.1L22 17.3H23.7L24.7 19.1L25.7 17.3H27.5L25.7 20.2L27.6 23Z",
32190
+ fill: "#B0CFE0"
32191
+ }), /* @__PURE__ */ jsx("path", {
32192
+ d: "M31 13H1V27H31V13Z",
32193
+ stroke: "#B0CFE0",
32194
+ strokeWidth: "2",
32195
+ strokeMiterlimit: "10",
32196
+ strokeLinecap: "square"
32197
+ })]
32198
+ }), /* @__PURE__ */ jsx("defs", {
32199
+ children: /* @__PURE__ */ jsx("clipPath", {
32200
+ id: "clip0_2871_5741",
32201
+ children: /* @__PURE__ */ jsx("rect", {
32202
+ width: "32",
32203
+ height: "32",
32204
+ fill: "white"
32205
+ })
32206
+ })
32207
+ })]
32208
+ });
32209
+ };
32210
+ const Gif = () => {
32211
+ return /* @__PURE__ */ jsxs(Icon, {
32212
+ width: "32px",
32213
+ height: "32px",
32214
+ viewBox: "0 0 32 32",
32215
+ fill: "none",
32216
+ xmlns: "http://www.w3.org/2000/svg",
32217
+ children: [/* @__PURE__ */ jsxs("g", {
32218
+ clipPath: "url(#clip0_2871_5704)",
32219
+ children: [/* @__PURE__ */ jsx("path", {
32220
+ d: "M20 1V9H28",
32221
+ stroke: "#B0CFE0",
32222
+ strokeWidth: "2",
32223
+ strokeMiterlimit: "10"
32224
+ }), /* @__PURE__ */ jsx("path", {
32225
+ d: "M28 13V9L20 1H4V13",
32226
+ stroke: "#B0CFE0",
32227
+ strokeWidth: "2",
32228
+ strokeMiterlimit: "10",
32229
+ strokeLinecap: "square"
32230
+ }), /* @__PURE__ */ jsx("path", {
32231
+ d: "M4 27V31H28V27",
32232
+ stroke: "#B0CFE0",
32233
+ strokeWidth: "2",
32234
+ strokeMiterlimit: "10",
32235
+ strokeLinecap: "square"
32236
+ }), /* @__PURE__ */ jsx("path", {
32237
+ d: "M12.4 19.7H14.9V22.8C14.2 23 13.5 23.1 12.7 23.1C11.8 23.1 11.1 22.8 10.7 22.3C10.3 21.8 10 21.1 10 20.1C10 19.2 10.3 18.5 10.8 17.9C11.3 17.3 12.1 17.1 13 17.1C13.4 17.1 13.7 17.1 14 17.2C14.3 17.3 14.6 17.4 14.8 17.5L14.3 18.7C13.9 18.5 13.4 18.4 12.9 18.4C12.4 18.4 12.1 18.5 11.9 18.8C11.7 19.1 11.5 19.5 11.5 20.1C11.5 20.6 11.6 21 11.8 21.3C12 21.6 12.3 21.7 12.8 21.7C13 21.7 13.2 21.7 13.4 21.6V20.7H12.4V19.7Z",
32238
+ fill: "#B0CFE0"
32239
+ }), /* @__PURE__ */ jsx("path", {
32240
+ d: "M16 23V17.3H17.6V23H16Z",
32241
+ fill: "#B0CFE0"
32242
+ }), /* @__PURE__ */ jsx("path", {
32243
+ d: "M20.3 23H18.8V17.3H22.2001V18.5H20.3V19.6H22V20.8H20.3V23Z",
32244
+ fill: "#B0CFE0"
32245
+ }), /* @__PURE__ */ jsx("path", {
32246
+ d: "M31 13H1V27H31V13Z",
32247
+ stroke: "#B0CFE0",
32248
+ strokeWidth: "2",
32249
+ strokeMiterlimit: "10",
32250
+ strokeLinecap: "square"
32251
+ })]
32252
+ }), /* @__PURE__ */ jsx("defs", {
32253
+ children: /* @__PURE__ */ jsx("clipPath", {
32254
+ id: "clip0_2871_5704",
32255
+ children: /* @__PURE__ */ jsx("rect", {
32256
+ width: "32",
32257
+ height: "32",
32258
+ fill: "white"
32259
+ })
32260
+ })
32261
+ })]
32262
+ });
32263
+ };
32264
+ const Icons = ({
32265
+ type
32266
+ }) => {
32267
+ switch (type) {
32268
+ case "avi":
32269
+ return /* @__PURE__ */ jsx(Avi, {});
32270
+ case "csv":
32271
+ return /* @__PURE__ */ jsx(Csv, {});
32272
+ case "doc":
32273
+ return /* @__PURE__ */ jsx(Doc, {});
32274
+ case "docx":
32275
+ return /* @__PURE__ */ jsx(Docx, {});
32276
+ case "gif":
32277
+ return /* @__PURE__ */ jsx(Gif, {});
32278
+ case "jpeg":
32279
+ return /* @__PURE__ */ jsx(Jpeg, {});
32280
+ case "jpg":
32281
+ return /* @__PURE__ */ jsx(Jpg, {});
32282
+ case "png":
32283
+ return /* @__PURE__ */ jsx(Png, {});
32284
+ case "pdf":
32285
+ return /* @__PURE__ */ jsx(Pdf, {});
32286
+ case "ppt":
32287
+ return /* @__PURE__ */ jsx(Ppt, {});
32288
+ case "pptx":
32289
+ return /* @__PURE__ */ jsx(Pptx, {});
32290
+ case "xls":
32291
+ return /* @__PURE__ */ jsx(Xls, {});
32292
+ case "xlsx":
32293
+ return /* @__PURE__ */ jsx(Xlsx, {});
32294
+ case "mp3":
32295
+ return /* @__PURE__ */ jsx(Mp3, {});
32296
+ case "wav":
32297
+ return /* @__PURE__ */ jsx(Wav, {});
32298
+ case "mp4":
32299
+ return /* @__PURE__ */ jsx(Mp4, {});
32300
+ case "mkv":
32301
+ return /* @__PURE__ */ jsx(Mkv, {});
32302
+ default:
32303
+ return null;
32304
+ }
32305
+ };
32306
+ const Jpeg = () => {
32307
+ return /* @__PURE__ */ jsxs(Icon, {
32308
+ width: "32px",
32309
+ height: "32px",
32310
+ viewBox: "0 0 32 32",
32311
+ fill: "none",
32312
+ xmlns: "http://www.w3.org/2000/svg",
32313
+ children: [/* @__PURE__ */ jsxs("g", {
32314
+ clipPath: "url(#clip0_2871_5685)",
32315
+ children: [/* @__PURE__ */ jsx("path", {
32316
+ d: "M20 1V9H28",
32317
+ stroke: "#B0CFE0",
32318
+ strokeWidth: "2",
32319
+ strokeMiterlimit: "10"
32320
+ }), /* @__PURE__ */ jsx("path", {
32321
+ d: "M28 13V9L20 1H4V13",
32322
+ stroke: "#B0CFE0",
32323
+ strokeWidth: "2",
32324
+ strokeMiterlimit: "10",
32325
+ strokeLinecap: "square"
32326
+ }), /* @__PURE__ */ jsx("path", {
32327
+ d: "M4 27V31H28V27",
32328
+ stroke: "#B0CFE0",
32329
+ strokeWidth: "2",
32330
+ strokeMiterlimit: "10",
32331
+ strokeLinecap: "square"
32332
+ }), /* @__PURE__ */ jsx("path", {
32333
+ d: "M7.8 24.8C7.5 24.8 7.3 24.8 7 24.7V23.5C7.1 23.5 7.2 23.5 7.3 23.6C7.4 23.7 7.5 23.6 7.6 23.6C7.9 23.6 8 23.5 8.1 23.4C8.2 23.3 8.3 23 8.3 22.6V17.3H9.9V22.5C9.9 23.3 9.7 23.9 9.4 24.3C9.1 24.7 8.4 24.8 7.8 24.8Z",
32334
+ fill: "#B0CFE0"
32335
+ }), /* @__PURE__ */ jsx("path", {
32336
+ d: "M15.2001 19.1C15.2001 19.7 15.0001 20.2 14.6001 20.6C14.2001 21 13.7001 21.1 13.0001 21.1H12.6001V23H11.1001V17.3H13.1001C13.8001 17.3 14.4001 17.5 14.7001 17.8C15.0001 18.1 15.2001 18.5 15.2001 19.1ZM12.6001 19.8H12.9001C13.1001 19.8 13.3001 19.7 13.5001 19.6C13.7001 19.5 13.7001 19.3 13.7001 19.1C13.7001 18.7 13.5001 18.5 13.1001 18.5H12.7001V19.8H12.6001Z",
32337
+ fill: "#B0CFE0"
32338
+ }), /* @__PURE__ */ jsx("path", {
32339
+ d: "M22.9 19.7H25.4V22.8C24.7 23 24 23.1 23.2 23.1C22.3 23.1 21.6 22.8 21.2 22.3C20.8 21.8 20.5 21.1 20.5 20.1C20.5 19.2 20.8 18.5 21.3 17.9C21.8 17.3 22.6 17.1 23.5 17.1C23.9 17.1 24.2 17.1 24.5 17.2C24.8 17.3 25.1 17.4 25.3 17.5L24.8 18.7C24.4 18.5 23.9 18.4 23.4 18.4C22.9 18.4 22.6 18.5 22.4 18.8C22.2 19.1 22 19.6 22 20.2C22 20.7 22.1 21.1 22.3 21.4C22.5 21.7 22.8 21.8 23.3 21.8C23.5 21.8 23.7 21.8 23.9 21.7V20.8H22.9V19.7Z",
32340
+ fill: "#B0CFE0"
32341
+ }), /* @__PURE__ */ jsx("path", {
32342
+ d: "M19.4 23H16V17.3H19.4V18.5H17.6V19.4H19.3V20.6H17.6V21.7H19.4V23Z",
32343
+ fill: "#B0CFE0"
32344
+ }), /* @__PURE__ */ jsx("path", {
32345
+ d: "M31 13H1V27H31V13Z",
32346
+ stroke: "#B0CFE0",
32347
+ strokeWidth: "2",
32348
+ strokeMiterlimit: "10",
32349
+ strokeLinecap: "square"
32350
+ })]
32351
+ }), /* @__PURE__ */ jsx("defs", {
32352
+ children: /* @__PURE__ */ jsx("clipPath", {
32353
+ id: "clip0_2871_5685",
32354
+ children: /* @__PURE__ */ jsx("rect", {
32355
+ width: "32",
32356
+ height: "32",
32357
+ fill: "white"
32358
+ })
32359
+ })
32360
+ })]
32361
+ });
32362
+ };
32363
+ const Jpg = () => {
32364
+ return /* @__PURE__ */ jsxs(Icon, {
32365
+ width: "32px",
32366
+ height: "32px",
32367
+ viewBox: "0 0 32 32",
32368
+ fill: "none",
32369
+ xmlns: "http://www.w3.org/2000/svg",
32370
+ children: [/* @__PURE__ */ jsx("path", {
32371
+ d: "M20 1V9H28",
32372
+ stroke: "#B0CFE0",
32373
+ strokeWidth: "2",
32374
+ strokeMiterlimit: "10"
32375
+ }), /* @__PURE__ */ jsx("path", {
32376
+ d: "M28 13V9L20 1H4V13",
32377
+ stroke: "#B0CFE0",
32378
+ strokeWidth: "2",
32379
+ strokeMiterlimit: "10",
32380
+ strokeLinecap: "square"
32381
+ }), /* @__PURE__ */ jsx("path", {
32382
+ d: "M4 27V31H28V27",
32383
+ stroke: "#B0CFE0",
32384
+ strokeWidth: "2",
32385
+ strokeMiterlimit: "10",
32386
+ strokeLinecap: "square"
32387
+ }), /* @__PURE__ */ jsx("path", {
32388
+ d: "M9.3 24.8C9 24.8 8.8 24.8 8.5 24.7V23.5C8.6 23.5 8.7 23.5 8.8 23.6C8.9 23.7 9 23.6 9.1 23.6C9.4 23.6 9.5 23.5 9.6 23.4C9.7 23.3 9.8 23 9.8 22.6V17.3H11.4V22.5C11.4 23.3 11.2 23.9 10.9 24.3C10.6 24.7 9.9 24.8 9.3 24.8Z",
32389
+ fill: "#B0CFE0"
32390
+ }), /* @__PURE__ */ jsx("path", {
32391
+ d: "M16.7 19.1C16.7 19.7 16.5 20.2 16.1 20.6C15.7 21 15.2 21.1 14.5 21.1H14.1V23H12.6V17.3H14.6C15.3 17.3 15.9 17.5 16.2 17.8C16.5 18.1 16.7 18.5 16.7 19.1ZM14.1 19.8H14.4C14.6 19.8 14.8 19.7 15 19.6C15.2 19.5 15.2 19.3 15.2 19.1C15.2 18.7 15 18.5 14.6 18.5H14.2V19.8H14.1Z",
32392
+ fill: "#B0CFE0"
32393
+ }), /* @__PURE__ */ jsx("path", {
32394
+ d: "M19.9 19.7H22.4V22.8C21.7 23 21 23.1 20.2 23.1C19.3 23.1 18.6 22.8 18.2 22.3C17.8 21.8 17.5 21.1 17.5 20.1C17.5 19.2 17.8 18.5 18.3 17.9C18.8 17.3 19.6 17.1 20.5 17.1C20.9 17.1 21.2 17.1 21.5 17.2C21.8 17.3 22.1 17.4 22.3 17.5L21.8 18.7C21.4 18.5 20.9 18.4 20.4 18.4C19.9 18.4 19.6 18.5 19.4 18.8C19.2 19.1 19 19.6 19 20.2C19 20.7 19.1 21.1 19.3 21.4C19.5 21.7 19.8 21.8 20.3 21.8C20.5 21.8 20.7 21.8 20.9 21.7V20.8H19.9V19.7Z",
32395
+ fill: "#B0CFE0"
32396
+ }), /* @__PURE__ */ jsx("path", {
32397
+ d: "M31 13H1V27H31V13Z",
32398
+ stroke: "#B0CFE0",
32399
+ strokeWidth: "2",
32400
+ strokeMiterlimit: "10",
32401
+ strokeLinecap: "square"
32402
+ })]
32403
+ });
32404
+ };
32405
+ const Mkv = () => {
32406
+ return /* @__PURE__ */ jsxs(Icon, {
32407
+ width: "32px",
32408
+ height: "32px",
32409
+ viewBox: "0 0 32 32",
32410
+ fill: "none",
32411
+ xmlns: "http://www.w3.org/2000/svg",
32412
+ children: [/* @__PURE__ */ jsxs("g", {
32413
+ clipPath: "url(#clip0_2871_5806)",
32414
+ children: [/* @__PURE__ */ jsx("path", {
32415
+ d: "M20 1V9H28",
32416
+ stroke: "#B0CFE0",
32417
+ strokeWidth: "2",
32418
+ strokeMiterlimit: "10"
32419
+ }), /* @__PURE__ */ jsx("path", {
32420
+ d: "M28 13V9L20 1H4V13",
32421
+ stroke: "#B0CFE0",
32422
+ strokeWidth: "2",
32423
+ strokeMiterlimit: "10",
32424
+ strokeLinecap: "square"
32425
+ }), /* @__PURE__ */ jsx("path", {
32426
+ d: "M4 27V31H28V27",
32427
+ stroke: "#B0CFE0",
32428
+ strokeWidth: "2",
32429
+ strokeMiterlimit: "10",
32430
+ strokeLinecap: "square"
32431
+ }), /* @__PURE__ */ jsx("path", {
32432
+ d: "M9.69995 23L8.49995 18.9C8.59995 19.6 8.59995 20.1 8.59995 20.5V23H7.19995V17.3H9.29995L10.5 21.4L11.7 17.3H13.8V23H12.4V20.5C12.4 20.4 12.4 20.2 12.4 20.1C12.4 20 12.4 19.6 12.5 18.9L11.2 23H9.69995Z",
32433
+ fill: "#B0CFE0"
32434
+ }), /* @__PURE__ */ jsx("path", {
32435
+ d: "M19.8 23H18.1L17 20.8L16.5 21.1V23H15V17.3H16.6V19.8C16.7 19.6 16.8 19.4 17.1 19.1L18.3 17.3H20L18.2 19.9L19.8 23Z",
32436
+ fill: "#B0CFE0"
32437
+ }), /* @__PURE__ */ jsx("path", {
32438
+ d: "M23.7001 17.3H25.4L23.5 23H21.7001L19.8 17.3H21.5L22.3 20.2C22.5 20.8 22.5001 21.3 22.6 21.5C22.6 21.3 22.7001 21.1 22.7001 20.8C22.7001 20.5 22.8 20.3 22.8 20.2L23.7001 17.3Z",
32439
+ fill: "#B0CFE0"
32440
+ }), /* @__PURE__ */ jsx("path", {
32441
+ d: "M31 13H1V27H31V13Z",
32442
+ stroke: "#B0CFE0",
32443
+ strokeWidth: "2",
32444
+ strokeMiterlimit: "10",
32445
+ strokeLinecap: "square"
32446
+ })]
32447
+ }), /* @__PURE__ */ jsx("defs", {
32448
+ children: /* @__PURE__ */ jsx("clipPath", {
32449
+ id: "clip0_2871_5806",
32450
+ children: /* @__PURE__ */ jsx("rect", {
32451
+ width: "32",
32452
+ height: "32",
32453
+ fill: "white"
32454
+ })
32455
+ })
32456
+ })]
32457
+ });
32458
+ };
32459
+ const Mp3 = () => {
32460
+ return /* @__PURE__ */ jsxs(Icon, {
32461
+ width: "32px",
32462
+ height: "32px",
32463
+ viewBox: "0 0 32 32",
32464
+ fill: "none",
32465
+ xmlns: "http://www.w3.org/2000/svg",
32466
+ children: [/* @__PURE__ */ jsxs("g", {
32467
+ clipPath: "url(#clip0_2871_5815)",
32468
+ children: [/* @__PURE__ */ jsx("path", {
32469
+ d: "M20 1V9H28",
32470
+ stroke: "#B0CFE0",
32471
+ strokeWidth: "2",
32472
+ strokeMiterlimit: "10"
32473
+ }), /* @__PURE__ */ jsx("path", {
32474
+ d: "M28 13V9L20 1H4V13",
32475
+ stroke: "#B0CFE0",
32476
+ strokeWidth: "2",
32477
+ strokeMiterlimit: "10",
32478
+ strokeLinecap: "square"
32479
+ }), /* @__PURE__ */ jsx("path", {
32480
+ d: "M4 27V31H28V27",
32481
+ stroke: "#B0CFE0",
32482
+ strokeWidth: "2",
32483
+ strokeMiterlimit: "10",
32484
+ strokeLinecap: "square"
32485
+ }), /* @__PURE__ */ jsx("path", {
32486
+ d: "M10.4 23L9.20002 18.9C9.30002 19.6 9.30002 20.1 9.30002 20.5V23H7.90002V17.3H10L11.2 21.4L12.4 17.3H14.5V23H13V20.5C13 20.4 13 20.2 13 20.1C13 20 13 19.6 13.1 18.9L11.8 23H10.4Z",
32487
+ fill: "#B0CFE0"
32488
+ }), /* @__PURE__ */ jsx("path", {
32489
+ d: "M19.8 19.1C19.8 19.7 19.6 20.2 19.2 20.6C18.8 21 18.3 21.1 17.6 21.1H17.2V23H15.7V17.3H17.7C18.4 17.3 19 17.5 19.3 17.8C19.6 18.1 19.8 18.5 19.8 19.1ZM17.2 19.8H17.5C17.7 19.8 17.9 19.7 18.1 19.6C18.3 19.5 18.3 19.3 18.3 19.1C18.3 18.7 18.1 18.5 17.7 18.5H17.3V19.8H17.2Z",
32490
+ fill: "#B0CFE0"
32491
+ }), /* @__PURE__ */ jsx("path", {
32492
+ d: "M24.2001 18.5C24.2001 18.9 24.1 19.2 23.9 19.4C23.7 19.6 23.4 19.9 23 20C24 20.1 24.4 20.6 24.4 21.4C24.4 21.9 24.2 22.3 23.8 22.7C23.4 23.1 22.8 23.2 22 23.2C21.7 23.2 21.4 23.2 21.1 23.1C20.8 23 20.6 23 20.3 22.9V21.6C20.5 21.7 20.8 21.8 21.1 21.9C21.4 22 21.6 22 21.8 22C22.1 22 22.4 22 22.5 21.9C22.6 21.8 22.7001 21.7 22.7001 21.5C22.7001 21.3 22.7 21.2 22.6 21.1C22.5001 21 22.4001 21 22.2001 20.9C22.0001 20.8 21.8 20.8 21.5 20.8H21.1V19.6H21.5C22.3 19.6 22.7001 19.4 22.7001 19C22.7001 18.8 22.6 18.7 22.5 18.7C22.4 18.7 22.2 18.6 22 18.6C21.6 18.6 21.3 18.7 20.9 19L20.3 18C20.6 17.8 20.9001 17.6 21.2001 17.6C21.5001 17.6 21.9 17.5 22.3 17.5C22.9 17.5 23.4001 17.6 23.7001 17.9C24.0001 18.2 24.2001 18.1 24.2001 18.5Z",
32493
+ fill: "#B0CFE0"
32494
+ }), /* @__PURE__ */ jsx("path", {
32495
+ d: "M31 13H1V27H31V13Z",
32496
+ stroke: "#B0CFE0",
32497
+ strokeWidth: "2",
32498
+ strokeMiterlimit: "10",
32499
+ strokeLinecap: "square"
32500
+ })]
32501
+ }), /* @__PURE__ */ jsx("defs", {
32502
+ children: /* @__PURE__ */ jsx("clipPath", {
32503
+ id: "clip0_2871_5815",
32504
+ children: /* @__PURE__ */ jsx("rect", {
32505
+ width: "32",
32506
+ height: "32",
32507
+ fill: "white"
32508
+ })
32509
+ })
32510
+ })]
32511
+ });
32512
+ };
32513
+ const Mp4 = () => {
32514
+ return /* @__PURE__ */ jsxs(Icon, {
32515
+ width: "32px",
32516
+ height: "32px",
32517
+ viewBox: "0 0 32 32",
32518
+ fill: "none",
32519
+ xmlns: "http://www.w3.org/2000/svg",
32520
+ children: [/* @__PURE__ */ jsxs("g", {
32521
+ clipPath: "url(#clip0_2871_5788)",
32522
+ children: [/* @__PURE__ */ jsx("path", {
32523
+ d: "M20 1V9H28",
32524
+ stroke: "#B0CFE0",
32525
+ strokeWidth: "2",
32526
+ strokeMiterlimit: "10"
32527
+ }), /* @__PURE__ */ jsx("path", {
32528
+ d: "M28 13V9L20 1H4V13",
32529
+ stroke: "#B0CFE0",
32530
+ strokeWidth: "2",
32531
+ strokeMiterlimit: "10",
32532
+ strokeLinecap: "square"
32533
+ }), /* @__PURE__ */ jsx("path", {
32534
+ d: "M4 27V31H28V27",
32535
+ stroke: "#B0CFE0",
32536
+ strokeWidth: "2",
32537
+ strokeMiterlimit: "10",
32538
+ strokeLinecap: "square"
32539
+ }), /* @__PURE__ */ jsx("path", {
32540
+ d: "M10.4 23L9.20002 18.9C9.30002 19.6 9.30002 20.1 9.30002 20.5V23H7.90002V17.3H10L11.2 21.4L12.4 17.3H14.5V23H13V20.5C13 20.4 13 20.2 13 20.1C13 20 13 19.6 13.1 18.9L11.8 23H10.4Z",
32541
+ fill: "#B0CFE0"
32542
+ }), /* @__PURE__ */ jsx("path", {
32543
+ d: "M19.8 19.1C19.8 19.7 19.6 20.2 19.2 20.6C18.8 21 18.3 21.1 17.6 21.1H17.2V23H15.7V17.3H17.7C18.4 17.3 19 17.5 19.3 17.8C19.6 18.1 19.8 18.5 19.8 19.1ZM17.2 19.8H17.5C17.7 19.8 17.9 19.7 18.1 19.6C18.3 19.5 18.3 19.3 18.3 19.1C18.3 18.7 18.1 18.5 17.7 18.5H17.3V19.8H17.2Z",
32544
+ fill: "#B0CFE0"
32545
+ }), /* @__PURE__ */ jsx("path", {
32546
+ d: "M24.6 21.9H24V23H22.5V21.9H20.2V20.8L22.6 17.3H24V20.8H24.6V21.9ZM22.5 20.7V20C22.5 19.9 22.5 19.7 22.5 19.5C22.5 19.3 22.5 19.2 22.5 19.2C22.4 19.4 22.3 19.6 22.2 19.8L21.6 20.7H22.5Z",
32547
+ fill: "#B0CFE0"
32548
+ }), /* @__PURE__ */ jsx("path", {
32549
+ d: "M31 13H1V27H31V13Z",
32550
+ stroke: "#B0CFE0",
32551
+ strokeWidth: "2",
32552
+ strokeMiterlimit: "10",
32553
+ strokeLinecap: "square"
32554
+ })]
32555
+ }), /* @__PURE__ */ jsx("defs", {
32556
+ children: /* @__PURE__ */ jsx("clipPath", {
32557
+ id: "clip0_2871_5788",
32558
+ children: /* @__PURE__ */ jsx("rect", {
32559
+ width: "32",
32560
+ height: "32",
32561
+ fill: "white"
32562
+ })
32563
+ })
32564
+ })]
32565
+ });
32566
+ };
32567
+ const Pdf = () => {
32568
+ return /* @__PURE__ */ jsxs(Icon, {
32569
+ width: "32px",
32570
+ height: "32px",
32571
+ viewBox: "0 0 32 32",
32572
+ fill: "none",
32573
+ xmlns: "http://www.w3.org/2000/svg",
32574
+ children: [/* @__PURE__ */ jsxs("g", {
32575
+ clipPath: "url(#clip0_2871_5779)",
32576
+ children: [/* @__PURE__ */ jsx("path", {
32577
+ d: "M20 1V9H28",
32578
+ stroke: "#B0CFE0",
32579
+ strokeWidth: "2",
32580
+ strokeMiterlimit: "10"
32581
+ }), /* @__PURE__ */ jsx("path", {
32582
+ d: "M28 13V9L20 1H4V13",
32583
+ stroke: "#B0CFE0",
32584
+ strokeWidth: "2",
32585
+ strokeMiterlimit: "10",
32586
+ strokeLinecap: "square"
32587
+ }), /* @__PURE__ */ jsx("path", {
32588
+ d: "M4 27V31H28V27",
32589
+ stroke: "#B0CFE0",
32590
+ strokeWidth: "2",
32591
+ strokeMiterlimit: "10",
32592
+ strokeLinecap: "square"
32593
+ }), /* @__PURE__ */ jsx("path", {
32594
+ d: "M13.143 19.105C13.143 19.743 12.955 20.236 12.579 20.584C12.203 20.932 11.668 21.105 10.975 21.105H10.541V23H8.99805V17.289H10.975C11.696 17.289 12.238 17.446 12.6 17.762C12.962 18.078 13.143 18.524 13.143 19.105ZM10.541 19.848H10.822C11.054 19.848 11.238 19.783 11.375 19.653C11.512 19.523 11.58 19.343 11.58 19.114C11.58 18.728 11.367 18.536 10.939 18.536H10.541V19.848Z",
32595
+ fill: "#B0CFE0"
32596
+ }), /* @__PURE__ */ jsx("path", {
32597
+ d: "M18.9 20.023C18.9 20.976 18.638 21.711 18.113 22.226C17.588 22.741 16.851 23 15.9 23H14.052V17.289H16.029C16.946 17.289 17.654 17.523 18.152 17.992C18.65 18.461 18.9 19.138 18.9 20.023ZM17.299 20.078C17.299 19.555 17.195 19.167 16.988 18.914C16.781 18.661 16.467 18.535 16.045 18.535H15.596V21.734H15.94C16.409 21.734 16.752 21.598 16.971 21.326C17.19 21.054 17.299 20.638 17.299 20.078Z",
32598
+ fill: "#B0CFE0"
32599
+ }), /* @__PURE__ */ jsx("path", {
32600
+ d: "M21.443 23H19.923V17.289H23.298V18.527H21.443V19.617H23.154V20.855H21.443V23Z",
32601
+ fill: "#B0CFE0"
32602
+ }), /* @__PURE__ */ jsx("path", {
32603
+ d: "M31 13H1V27H31V13Z",
32604
+ stroke: "#B0CFE0",
32605
+ strokeWidth: "2",
32606
+ strokeMiterlimit: "10",
32607
+ strokeLinecap: "square"
32608
+ })]
32609
+ }), /* @__PURE__ */ jsx("defs", {
32610
+ children: /* @__PURE__ */ jsx("clipPath", {
32611
+ id: "clip0_2871_5779",
32612
+ children: /* @__PURE__ */ jsx("rect", {
32613
+ width: "32",
32614
+ height: "32",
32615
+ fill: "white"
32616
+ })
32617
+ })
32618
+ })]
32619
+ });
32620
+ };
32621
+ const Png = () => {
32622
+ return /* @__PURE__ */ jsxs(Icon, {
32623
+ width: "32px",
32624
+ height: "32px",
32625
+ viewBox: "0 0 32 32",
32626
+ fill: "none",
32627
+ xmlns: "http://www.w3.org/2000/svg",
32628
+ children: [/* @__PURE__ */ jsxs("g", {
32629
+ clipPath: "url(#clip0_2871_5695)",
32630
+ children: [/* @__PURE__ */ jsx("path", {
32631
+ d: "M20 1V9H28",
32632
+ stroke: "#B0CFE0",
32633
+ strokeWidth: "2",
32634
+ strokeMiterlimit: "10"
32635
+ }), /* @__PURE__ */ jsx("path", {
32636
+ d: "M28 13V9L20 1H4V13",
32637
+ stroke: "#B0CFE0",
32638
+ strokeWidth: "2",
32639
+ strokeMiterlimit: "10",
32640
+ strokeLinecap: "square"
32641
+ }), /* @__PURE__ */ jsx("path", {
32642
+ d: "M4 27V31H28V27",
32643
+ stroke: "#B0CFE0",
32644
+ strokeWidth: "2",
32645
+ strokeMiterlimit: "10",
32646
+ strokeLinecap: "square"
32647
+ }), /* @__PURE__ */ jsx("path", {
32648
+ d: "M11.9 19.1C11.9 19.7 11.7 20.2 11.3 20.6C10.9 21 10.4 21.1 9.70005 21.1H9.30005V23H7.80005V17.3H9.80005C10.5 17.3 11.1 17.5 11.4 17.8C11.7 18.1 11.9 18.5 11.9 19.1ZM9.30005 19.8H9.60005C9.80005 19.8 10 19.7 10.2 19.6C10.4 19.5 10.4 19.3 10.4 19.1C10.4 18.7 10.2 18.5 9.80005 18.5H9.30005V19.8Z",
32649
+ fill: "#B0CFE0"
32650
+ }), /* @__PURE__ */ jsx("path", {
32651
+ d: "M18.3 23H16.3L14.2 19C14.2 19.6 14.3 20.1 14.3 20.4V23H12.9V17.3H14.9L17 21.3C17 20.7 16.9 20.3 16.9 19.9V17.3H18.3V23Z",
32652
+ fill: "#B0CFE0"
32653
+ }), /* @__PURE__ */ jsx("path", {
32654
+ d: "M21.8 19.7H24.3V22.8C23.6 23 22.9 23.1 22.1 23.1C21.2 23.1 20.5 22.8 20.1 22.3C19.7 21.8 19.4 21.1 19.4 20.1C19.4 19.2 19.7 18.5 20.2 17.9C20.7 17.3 21.5 17.1 22.4 17.1C22.8 17.1 23.1 17.1 23.4 17.2C23.7 17.3 24 17.4 24.2 17.5L23.7 18.7C23.3 18.5 22.8 18.4 22.3 18.4C21.8 18.4 21.5 18.5 21.3 18.8C21.1 19.1 20.9 19.5 20.9 20.1C20.9 20.6 21 21 21.2 21.3C21.4 21.6 21.7 21.7 22.2 21.7C22.4 21.7 22.6 21.7 22.8 21.6V20.7H21.8V19.7Z",
32655
+ fill: "#B0CFE0"
32656
+ }), /* @__PURE__ */ jsx("path", {
32657
+ d: "M31 13H1V27H31V13Z",
32658
+ stroke: "#B0CFE0",
32659
+ strokeWidth: "2",
32660
+ strokeMiterlimit: "10",
32661
+ strokeLinecap: "square"
32662
+ })]
32663
+ }), /* @__PURE__ */ jsx("defs", {
32664
+ children: /* @__PURE__ */ jsx("clipPath", {
32665
+ id: "clip0_2871_5695",
32666
+ children: /* @__PURE__ */ jsx("rect", {
32667
+ width: "32",
32668
+ height: "32",
32669
+ fill: "white"
32670
+ })
32671
+ })
32672
+ })]
32673
+ });
32674
+ };
32675
+ const Ppt = () => {
32676
+ return /* @__PURE__ */ jsxs(Icon, {
32677
+ width: "32px",
32678
+ height: "32px",
32679
+ viewBox: "0 0 32 32",
32680
+ fill: "none",
32681
+ xmlns: "http://www.w3.org/2000/svg",
32682
+ children: [/* @__PURE__ */ jsxs("g", {
32683
+ clipPath: "url(#clip0_2871_5713)",
32684
+ children: [/* @__PURE__ */ jsx("path", {
32685
+ d: "M20 1V9H28",
32686
+ stroke: "#B0CFE0",
32687
+ strokeWidth: "2",
32688
+ strokeMiterlimit: "10"
32689
+ }), /* @__PURE__ */ jsx("path", {
32690
+ d: "M28 13V9L20 1H4V13",
32691
+ stroke: "#B0CFE0",
32692
+ strokeWidth: "2",
32693
+ strokeMiterlimit: "10",
32694
+ strokeLinecap: "square"
32695
+ }), /* @__PURE__ */ jsx("path", {
32696
+ d: "M4 27V31H28V27",
32697
+ stroke: "#B0CFE0",
32698
+ strokeWidth: "2",
32699
+ strokeMiterlimit: "10",
32700
+ strokeLinecap: "square"
32701
+ }), /* @__PURE__ */ jsx("path", {
32702
+ d: "M13.2 19.1C13.2 19.7 13 20.2 12.6 20.6C12.2 21 11.7 21.1 11 21.1H10.5V23H9V17.3H11C11.7 17.3 12.3 17.5 12.6 17.8C12.9 18.1 13.2 18.5 13.2 19.1ZM10.5 19.8H10.8C11 19.8 11.2 19.7 11.4 19.6C11.6 19.5 11.6 19.3 11.6 19.1C11.6 18.7 11.4 18.5 11 18.5H10.5V19.8Z",
32703
+ fill: "#B0CFE0"
32704
+ }), /* @__PURE__ */ jsx("path", {
32705
+ d: "M18.1999 19.1C18.1999 19.7 17.9999 20.2 17.5999 20.6C17.1999 21 16.6999 21.1 15.9999 21.1H15.5999V23H14.0999V17.3H16.0999C16.7999 17.3 17.3999 17.5 17.6999 17.8C17.9999 18.1 18.1999 18.5 18.1999 19.1ZM15.5999 19.8H15.8999C16.0999 19.8 16.2999 19.7 16.4999 19.6C16.6999 19.5 16.6999 19.3 16.6999 19.1C16.6999 18.7 16.4999 18.5 16.0999 18.5H15.6999V19.8H15.5999Z",
32706
+ fill: "#B0CFE0"
32707
+ }), /* @__PURE__ */ jsx("path", {
32708
+ d: "M21.6 23H20.1V18.6H18.7V17.3H23V18.6H21.6V23Z",
32709
+ fill: "#B0CFE0"
32710
+ }), /* @__PURE__ */ jsx("path", {
32711
+ d: "M31 13H1V27H31V13Z",
32712
+ stroke: "#B0CFE0",
32713
+ strokeWidth: "2",
32714
+ strokeMiterlimit: "10",
32715
+ strokeLinecap: "square"
32716
+ })]
32717
+ }), /* @__PURE__ */ jsx("defs", {
32718
+ children: /* @__PURE__ */ jsx("clipPath", {
32719
+ id: "clip0_2871_5713",
32720
+ children: /* @__PURE__ */ jsx("rect", {
32721
+ width: "32",
32722
+ height: "32",
32723
+ fill: "white"
32724
+ })
32725
+ })
32726
+ })]
32727
+ });
32728
+ };
32729
+ const Pptx = () => {
32730
+ return /* @__PURE__ */ jsxs(Icon, {
32731
+ width: "32px",
32732
+ height: "32px",
32733
+ viewBox: "0 0 32 32",
32734
+ fill: "none",
32735
+ xmlns: "http://www.w3.org/2000/svg",
32736
+ children: [/* @__PURE__ */ jsxs("g", {
32737
+ clipPath: "url(#clip0_2871_5722)",
32738
+ children: [/* @__PURE__ */ jsx("path", {
32739
+ d: "M20 1V9H28",
32740
+ stroke: "#B0CFE0",
32741
+ strokeWidth: "2",
32742
+ strokeMiterlimit: "10"
32743
+ }), /* @__PURE__ */ jsx("path", {
32744
+ d: "M28 13V9L20 1H4V13",
32745
+ stroke: "#B0CFE0",
32746
+ strokeWidth: "2",
32747
+ strokeMiterlimit: "10",
32748
+ strokeLinecap: "square"
32749
+ }), /* @__PURE__ */ jsx("path", {
32750
+ d: "M4 27V31H28V27",
32751
+ stroke: "#B0CFE0",
32752
+ strokeWidth: "2",
32753
+ strokeMiterlimit: "10",
32754
+ strokeLinecap: "square"
32755
+ }), /* @__PURE__ */ jsx("path", {
32756
+ d: "M10.5 19.1C10.5 19.7 10.3 20.2 9.90005 20.6C9.50005 21 9.00005 21.1 8.30005 21.1H7.80005V23H6.30005V17.3H8.30005C9.00005 17.3 9.60005 17.5 9.90005 17.8C10.2 18.1 10.5 18.5 10.5 19.1ZM7.80005 19.8H8.10005C8.30005 19.8 8.50005 19.7 8.70005 19.6C8.90005 19.5 8.90005 19.3 8.90005 19.1C8.90005 18.7 8.70005 18.5 8.30005 18.5H7.80005V19.8Z",
32757
+ fill: "#B0CFE0"
32758
+ }), /* @__PURE__ */ jsx("path", {
32759
+ d: "M15.5 19.1C15.5 19.7 15.3 20.2 14.9 20.6C14.5 21 14 21.1 13.3 21.1H12.9V23H11.4V17.3H13.4C14.1 17.3 14.7 17.5 15 17.8C15.3 18.1 15.5 18.5 15.5 19.1ZM12.9 19.8H13.2C13.4 19.8 13.6 19.7 13.8 19.6C14 19.5 14 19.3 14 19.1C14 18.7 13.8 18.5 13.4 18.5H13V19.8H12.9Z",
32760
+ fill: "#B0CFE0"
32761
+ }), /* @__PURE__ */ jsx("path", {
32762
+ d: "M18.9 23H17.4V18.6H16V17.3H20.3V18.6H18.9V23Z",
32763
+ fill: "#B0CFE0"
32764
+ }), /* @__PURE__ */ jsx("path", {
32765
+ d: "M26.3 23H24.5L23.4 21.2L22.3 23H20.6L22.5 20.1L20.7 17.3H22.4L23.4 19.1L24.4 17.3H26.2L24.4 20.2L26.3 23Z",
32766
+ fill: "#B0CFE0"
32767
+ }), /* @__PURE__ */ jsx("path", {
32768
+ d: "M31 13H1V27H31V13Z",
32769
+ stroke: "#B0CFE0",
32770
+ strokeWidth: "2",
32771
+ strokeMiterlimit: "10",
32772
+ strokeLinecap: "square"
32773
+ })]
32774
+ }), /* @__PURE__ */ jsx("defs", {
32775
+ children: /* @__PURE__ */ jsx("clipPath", {
32776
+ id: "clip0_2871_5722",
32777
+ children: /* @__PURE__ */ jsx("rect", {
32778
+ width: "32",
32779
+ height: "32",
32780
+ fill: "white"
32781
+ })
32782
+ })
32783
+ })]
32784
+ });
32785
+ };
32786
+ const Wav = () => {
32787
+ return /* @__PURE__ */ jsxs(Icon, {
32788
+ width: "32px",
32789
+ height: "32px",
32790
+ viewBox: "0 0 32 32",
32791
+ fill: "none",
32792
+ xmlns: "http://www.w3.org/2000/svg",
32793
+ children: [/* @__PURE__ */ jsxs("g", {
32794
+ clipPath: "url(#clip0_2871_5824)",
32795
+ children: [/* @__PURE__ */ jsx("path", {
32796
+ d: "M20 1V9H28",
32797
+ stroke: "#B0CFE0",
32798
+ strokeWidth: "2",
32799
+ strokeMiterlimit: "10"
32800
+ }), /* @__PURE__ */ jsx("path", {
32801
+ d: "M28 13V9L20 1H4V13",
32802
+ stroke: "#B0CFE0",
32803
+ strokeWidth: "2",
32804
+ strokeMiterlimit: "10",
32805
+ strokeLinecap: "square"
32806
+ }), /* @__PURE__ */ jsx("path", {
32807
+ d: "M4 27V31H28V27",
32808
+ stroke: "#B0CFE0",
32809
+ strokeWidth: "2",
32810
+ strokeMiterlimit: "10",
32811
+ strokeLinecap: "square"
32812
+ }), /* @__PURE__ */ jsx("path", {
32813
+ d: "M12.9 23H11.1L10.6 20.5C10.6 20.4 10.5 20.2 10.5 19.9C10.5 19.6 10.4 19.3 10.4 19.1C10.4 19.3 10.3 19.5 10.3 19.7C10.3 19.9 10.2 20.2 10.2 20.4C10.2 20.6 9.90005 21.5 9.50005 23H7.70005L6.30005 17.3H7.80005L8.40005 20.2C8.50005 20.8 8.60005 21.3 8.70005 21.7C8.70005 21.4 8.80005 21.1 8.90005 20.6C9.00005 20.1 9.10005 19.8 9.10005 19.5L9.60005 17.3H11L11.5 19.5C11.6 19.8 11.7 20.2 11.8 20.7C11.9 21.2 11.9 21.5 12 21.7C12 21.4 12.1 20.9 12.3 20.2L12.9 17.3H14.4L12.9 23Z",
32814
+ fill: "#B0CFE0"
32815
+ }), /* @__PURE__ */ jsx("path", {
32816
+ d: "M18.6 23L18.3 21.9H16.4L16.2 23H14.5L16.4 17.3H18.5L20.4 23H18.6ZM18 20.7L17.8 19.8C17.7 19.6 17.7 19.3 17.6 19C17.5 18.7 17.5 18.4 17.4 18.3C17.4 18.4 17.3 18.7 17.3 19C17.3 19.3 17.1 19.9 16.8 20.8H18V20.7Z",
32817
+ fill: "#B0CFE0"
32818
+ }), /* @__PURE__ */ jsx("path", {
32819
+ d: "M24.1 17.3H25.8L24 23H22.2001L20.3 17.3H22L22.8 20.2C23 20.8 23.0001 21.3 23.1 21.5C23.1 21.3 23.2001 21.1 23.2001 20.8C23.2001 20.5 23.3 20.3 23.3 20.2L24.1 17.3Z",
32820
+ fill: "#B0CFE0"
32821
+ }), /* @__PURE__ */ jsx("path", {
32822
+ d: "M31 13H1V27H31V13Z",
32823
+ stroke: "#B0CFE0",
32824
+ strokeWidth: "2",
32825
+ strokeMiterlimit: "10",
32826
+ strokeLinecap: "square"
32827
+ })]
32828
+ }), /* @__PURE__ */ jsx("defs", {
32829
+ children: /* @__PURE__ */ jsx("clipPath", {
32830
+ id: "clip0_2871_5824",
32831
+ children: /* @__PURE__ */ jsx("rect", {
32832
+ width: "32",
32833
+ height: "32",
32834
+ fill: "white"
32835
+ })
32836
+ })
32837
+ })]
32838
+ });
32839
+ };
32840
+ const Xls = () => {
32841
+ return /* @__PURE__ */ jsxs(Icon, {
32842
+ width: "32px",
32843
+ height: "32px",
32844
+ viewBox: "0 0 32 32",
32845
+ fill: "none",
32846
+ xmlns: "http://www.w3.org/2000/svg",
32847
+ children: [/* @__PURE__ */ jsxs("g", {
32848
+ clipPath: "url(#clip0_2871_5751)",
32849
+ children: [/* @__PURE__ */ jsx("path", {
32850
+ d: "M20 1V9H28",
32851
+ stroke: "#B0CFE0",
32852
+ strokeWidth: "2",
32853
+ strokeMiterlimit: "10"
32854
+ }), /* @__PURE__ */ jsx("path", {
32855
+ d: "M28 13V9L20 1H4V13",
32856
+ stroke: "#B0CFE0",
32857
+ strokeWidth: "2",
32858
+ strokeMiterlimit: "10",
32859
+ strokeLinecap: "square"
32860
+ }), /* @__PURE__ */ jsx("path", {
32861
+ d: "M4 27V31H28V27",
32862
+ stroke: "#B0CFE0",
32863
+ strokeWidth: "2",
32864
+ strokeMiterlimit: "10",
32865
+ strokeLinecap: "square"
32866
+ }), /* @__PURE__ */ jsx("path", {
32867
+ d: "M14.7 23H13L11.9 21.2L10.7 23H9L10.9 20.1L9.1 17.3H10.8L11.8 19.1L12.8 17.3H14.6L12.8 20.2L14.7 23Z",
32868
+ fill: "#B0CFE0"
32869
+ }), /* @__PURE__ */ jsx("path", {
32870
+ d: "M15.3999 23V17.3H16.8999V21.8H19.0999V23H15.3999Z",
32871
+ fill: "#B0CFE0"
32872
+ }), /* @__PURE__ */ jsx("path", {
32873
+ d: "M23.8 21.3C23.8 21.7 23.7 22 23.5 22.2C23.3 22.4 23.1 22.7 22.7 22.8C22.3 22.9 22 23 21.5 23C21.1 23 20.8 23 20.5 22.9C20.2 22.8 20 22.8 19.7 22.6V21.2C20 21.4 20.3 21.5 20.6 21.6C20.9 21.7 21.2 21.7 21.5 21.7C21.7 21.7 21.9 21.7 22 21.6C22.1 21.5 22.2 21.4 22.2 21.3C22.2 21.2 22.2 21.2 22.1 21.1C22 21 22 21 21.9 20.9C21.8 20.8 21.6 20.7 21.1 20.5C20.7 20.3 20.4 20.2 20.3 20C20.2 19.8 20 19.7 19.9 19.5C19.8 19.3 19.8 19.1 19.8 18.8C19.8 18.3 20 17.9 20.4 17.6C20.8 17.3 21.3 17.2 22 17.2C22.6 17.2 23.2 17.3 23.8 17.6L23.3 18.8C22.8 18.6 22.3 18.4 21.9 18.4C21.7 18.4 21.6 18.4 21.5 18.5C21.4 18.6 21.4 18.7 21.4 18.8C21.4 18.9 21.5 19 21.6 19.1C21.7 19.2 22 19.3 22.5 19.6C23 19.8 23.3 20.1 23.5 20.3C23.7 20.5 23.8 20.9 23.8 21.3Z",
32874
+ fill: "#B0CFE0"
32875
+ }), /* @__PURE__ */ jsx("path", {
32876
+ d: "M31 13H1V27H31V13Z",
32877
+ stroke: "#B0CFE0",
32878
+ strokeWidth: "2",
32879
+ strokeMiterlimit: "10",
32880
+ strokeLinecap: "square"
32881
+ })]
32882
+ }), /* @__PURE__ */ jsx("defs", {
32883
+ children: /* @__PURE__ */ jsx("clipPath", {
32884
+ id: "clip0_2871_5751",
32885
+ children: /* @__PURE__ */ jsx("rect", {
32886
+ width: "32",
32887
+ height: "32",
32888
+ fill: "white"
32889
+ })
32890
+ })
32891
+ })]
32892
+ });
32893
+ };
32894
+ const Xlsx = () => {
32895
+ return /* @__PURE__ */ jsxs(Icon, {
32896
+ width: "32px",
32897
+ height: "32px",
32898
+ viewBox: "0 0 32 32",
32899
+ fill: "none",
32900
+ xmlns: "http://www.w3.org/2000/svg",
32901
+ children: [/* @__PURE__ */ jsxs("g", {
32902
+ clipPath: "url(#clip0_2871_5760)",
32903
+ children: [/* @__PURE__ */ jsx("path", {
32904
+ d: "M20 1V9H28",
32905
+ stroke: "#B0CFE0",
32906
+ strokeWidth: "2",
32907
+ strokeMiterlimit: "10"
32908
+ }), /* @__PURE__ */ jsx("path", {
32909
+ d: "M28 13V9L20 1H4V13",
32910
+ stroke: "#B0CFE0",
32911
+ strokeWidth: "2",
32912
+ strokeMiterlimit: "10",
32913
+ strokeLinecap: "square"
32914
+ }), /* @__PURE__ */ jsx("path", {
32915
+ d: "M4 27V31H28V27",
32916
+ stroke: "#B0CFE0",
32917
+ strokeWidth: "2",
32918
+ strokeMiterlimit: "10",
32919
+ strokeLinecap: "square"
32920
+ }), /* @__PURE__ */ jsx("path", {
32921
+ d: "M11.3 23H9.59998L8.49998 21.2L7.29998 23H5.59998L7.49998 20.1L5.69998 17.3H7.39998L8.39998 19.1L9.39998 17.3H11.2L9.39998 20.2L11.3 23Z",
32922
+ fill: "#B0CFE0"
32923
+ }), /* @__PURE__ */ jsx("path", {
32924
+ d: "M12 23V17.3H13.5V21.8H15.7V23H12Z",
32925
+ fill: "#B0CFE0"
32926
+ }), /* @__PURE__ */ jsx("path", {
32927
+ d: "M20.4 21.3C20.4 21.7 20.3 22 20.1 22.2C19.9 22.4 19.7 22.7 19.3 22.8C18.9 22.9 18.6 23 18.1 23C17.7 23 17.4 23 17.1 22.9C16.8 22.8 16.6 22.8 16.3 22.6V21.2C16.6 21.4 16.9001 21.5 17.2001 21.6C17.5001 21.7 17.8001 21.7 18.1 21.7C18.3001 21.7 18.5001 21.7 18.6 21.6C18.7 21.5 18.8 21.4 18.8 21.3C18.8 21.2 18.8001 21.2 18.7001 21.1C18.6001 21 18.6 21 18.5 20.9C18.4 20.8 18.2001 20.7 17.7001 20.5C17.3001 20.3 17 20.2 16.9 20C16.8 19.8 16.6 19.7 16.5 19.5C16.4 19.3 16.4 19.1 16.4 18.8C16.4 18.3 16.6 17.9 17 17.6C17.4 17.3 17.9 17.2 18.6 17.2C19.2 17.2 19.8 17.3 20.4 17.6L19.9 18.8C19.4 18.6 18.9 18.4 18.5 18.4C18.3 18.4 18.2 18.4 18.1 18.5C18 18.6 18 18.7 18 18.8C18 18.9 18.1001 19 18.2001 19.1C18.3001 19.2 18.6 19.3 19.1 19.6C19.6 19.8 19.9 20.1 20.1 20.3C20.3 20.5 20.4 20.9 20.4 21.3Z",
32928
+ fill: "#B0CFE0"
32929
+ }), /* @__PURE__ */ jsx("path", {
32930
+ d: "M26.4 23H24.6L23.5 21.2L22.4 23H20.7L22.6 20.1L20.7999 17.3H22.5L23.5 19.1L24.5 17.3H26.2999L24.5 20.2L26.4 23Z",
32931
+ fill: "#B0CFE0"
32932
+ }), /* @__PURE__ */ jsx("path", {
32933
+ d: "M31 13H1V27H31V13Z",
32934
+ stroke: "#B0CFE0",
32935
+ strokeWidth: "2",
32936
+ strokeMiterlimit: "10",
32937
+ strokeLinecap: "square"
32938
+ })]
32939
+ }), /* @__PURE__ */ jsx("defs", {
32940
+ children: /* @__PURE__ */ jsx("clipPath", {
32941
+ id: "clip0_2871_5760",
32942
+ children: /* @__PURE__ */ jsx("rect", {
32943
+ width: "32",
32944
+ height: "32",
32945
+ fill: "white"
32946
+ })
32947
+ })
32948
+ })]
32949
+ });
32950
+ };
32951
+ const Resources = ({
32952
+ id: id2,
32953
+ resourceType,
32954
+ resourceTitle,
32955
+ resourceDetail,
32956
+ resourceTextDownload,
32957
+ resourceLink,
32958
+ resourceNameFile
32959
+ }) => {
32960
+ return /* @__PURE__ */ jsxs(Box, {
32961
+ width: "285px",
32962
+ height: "147px",
32963
+ borderRadius: "8px",
32964
+ border: "1px",
32965
+ borderColor: vars("colors-neutral-platinum"),
32966
+ justifyContent: "center",
32967
+ textAlign: "center",
32968
+ display: "grid",
32969
+ gap: "8px",
32970
+ padding: 4,
32971
+ children: [/* @__PURE__ */ jsx(Box, {
32972
+ children: /* @__PURE__ */ jsx(Icons, {
32973
+ type: resourceType
32974
+ })
32975
+ }), /* @__PURE__ */ jsx(Box, {
32976
+ children: /* @__PURE__ */ jsx(Text, {
32977
+ fontFamily: "Roboto",
32978
+ fontWeight: "700",
32979
+ lineHeight: "21px",
32980
+ fontSize: "16px",
32981
+ color: "#555555",
32982
+ children: resourceTitle
32983
+ })
32984
+ }), /* @__PURE__ */ jsx(Box, {
32985
+ children: /* @__PURE__ */ jsx(Text, {
32986
+ fontFamily: "Roboto",
32987
+ fontWeight: "400",
32988
+ lineHeight: "14px",
32989
+ fontSize: "12px",
32990
+ color: "#555555",
32991
+ children: resourceDetail
32992
+ })
32993
+ }), /* @__PURE__ */ jsx(Box, {
32994
+ display: "flex",
32995
+ alignItems: "center",
32996
+ justifyContent: "center",
32997
+ children: /* @__PURE__ */ jsxs(Link, {
32998
+ href: resourceLink,
32999
+ fontFamily: "Roboto",
33000
+ fontWeight: "500",
33001
+ fontSize: "14px",
33002
+ lineHeight: "16px",
33003
+ color: vars("colors-neutral-gray"),
33004
+ download: resourceNameFile,
33005
+ textDecoration: "underline",
33006
+ gap: "8px",
33007
+ display: "flex",
33008
+ children: [/* @__PURE__ */ jsx(Download, {
33009
+ color: vars("colors-main-deepSkyBlue")
33010
+ }), resourceTextDownload]
33011
+ })
33012
+ })]
33013
+ });
33014
+ };
33015
+ export { Alert, Btn, BtnLink, BtnPrimary, BtnSecondary, BtnTertiary, CourseList, CourseStatus, Events, FlashNotification, index as Icons, Label, ModalAlert, NewTooltip, Progress, Resources, Ripples, TinyAlert, dataFake, maxWidthCoursesList, theme, useFlashNotification, vars };
31980
33016
  //# sourceMappingURL=eclass-ui-kit.es.js.map