@luscii-healthtech/web-ui 11.2.0 → 11.3.1

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.
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from "./types/IconProps.type";
3
+ declare const _default: (props: IconProps) => JSX.Element;
4
+ export default _default;
@@ -17,6 +17,7 @@ export { default as EditIcon } from "./EditIcon";
17
17
  export { default as EmptyIcon } from "./EmptyIcon";
18
18
  export { default as EmptyStateDashboardIcon } from "./EmptyStateDashboardIcon";
19
19
  export { default as ExclamationMarkIcon } from "./ExclamationMarkIcon";
20
+ export { default as ExportIcon } from "./ExportIcon";
20
21
  export { default as EyeIconSlashed } from "./EyeIconSlashed";
21
22
  export { default as EyeIcon } from "./EyeIcon";
22
23
  export { default as GearColoredIcon } from "./GearColoredIcon";
@@ -450,6 +450,13 @@ const SvgExclamationMarkIcon = (props) => React__namespace.default.createElement
450
450
  );
451
451
  var ExclamationMarkIcon = IconWrapper(SvgExclamationMarkIcon);
452
452
 
453
+ const SvgExportIcon = (props) => React__namespace.default.createElement(
454
+ "svg",
455
+ Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
456
+ React__namespace.default.createElement("path", { fill: "currentColor", d: "M6 23c-.55 0-1.02-.196-1.412-.588A1.926 1.926 0 0 1 4 21V10c0-.55.196-1.02.588-1.413A1.926 1.926 0 0 1 6 8h2c.283 0 .52.096.713.287.191.192.287.43.287.713s-.096.52-.287.712A.968.968 0 0 1 8 10H6v11h12V10h-2a.968.968 0 0 1-.713-.288A.967.967 0 0 1 15 9c0-.283.096-.52.287-.713A.968.968 0 0 1 16 8h2c.55 0 1.02.196 1.413.587.391.392.587.863.587 1.413v11c0 .55-.196 1.02-.587 1.412A1.926 1.926 0 0 1 18 23H6Zm5-18.175-.9.9c-.2.2-.433.296-.7.287a1.006 1.006 0 0 1-.7-.312c-.183-.2-.28-.433-.287-.7a.916.916 0 0 1 .287-.7l2.6-2.6c.2-.2.433-.3.7-.3.267 0 .5.1.7.3l2.6 2.6a.933.933 0 0 1 .275.687c0 .275-.092.513-.275.713-.2.2-.438.3-.713.3a.973.973 0 0 1-.712-.3L13 4.825V15a.97.97 0 0 1-.287.712A.968.968 0 0 1 12 16a.968.968 0 0 1-.713-.288A.968.968 0 0 1 11 15V4.825Z" })
457
+ );
458
+ var ExportIcon = IconWrapper(SvgExportIcon);
459
+
453
460
  const SvgEyeIconSlashed = (props) => React__namespace.default.createElement(
454
461
  "svg",
455
462
  Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 22, height: 20, fill: "none", viewBox: "0 0 22 20" }, props),
@@ -693,6 +700,7 @@ var Icons = /*#__PURE__*/Object.freeze({
693
700
  EmptyIcon: EmptyIcon,
694
701
  EmptyStateDashboardIcon: EmptyStateDashboardIcon,
695
702
  ExclamationMarkIcon: ExclamationMarkIcon,
703
+ ExportIcon: ExportIcon,
696
704
  EyeIcon: EyeIcon,
697
705
  EyeIconSlashed: EyeIconSlashed,
698
706
  GearColoredIcon: GearColoredIcon,
@@ -5552,6 +5560,7 @@ exports.EmptyIcon = EmptyIcon;
5552
5560
  exports.EmptyListMessage = EmptyListMessage;
5553
5561
  exports.EmptyStateDashboardIcon = EmptyStateDashboardIcon;
5554
5562
  exports.ExclamationMarkIcon = ExclamationMarkIcon;
5563
+ exports.ExportIcon = ExportIcon;
5555
5564
  exports.EyeIcon = EyeIcon;
5556
5565
  exports.EyeIconSlashed = EyeIconSlashed;
5557
5566
  exports.FilterBar = FilterBar;