@luscii-healthtech/web-ui 17.1.0 → 17.2.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.
@@ -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;
@@ -9,6 +9,7 @@ export { default as CheckIcon } from "./CheckIcon";
9
9
  export { default as ChevronDoubleIcon } from "./ChevronDoubleIcon";
10
10
  export { default as ChevronDownIcon } from "./ChevronDownIcon";
11
11
  export { default as ChevronRightIcon } from "./ChevronRightIcon";
12
+ export { default as ClockIcon } from "./ClockIcon";
12
13
  export { default as CrossIcon } from "./CrossIcon";
13
14
  export { default as DeleteIcon } from "./DeleteIcon";
14
15
  export { default as DownArrowIcon } from "./DownArrowIcon";
@@ -327,6 +327,13 @@ const SvgChevronRightIcon = (props) => React__namespace.default.createElement(
327
327
  );
328
328
  var ChevronRightIcon = IconWrapper(SvgChevronRightIcon);
329
329
 
330
+ const SvgClockIcon = (props) => React__namespace.default.createElement(
331
+ "svg",
332
+ Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
333
+ React__namespace.default.createElement("path", { fill: "currentColor", d: "M13 12.598v-3.6a.967.967 0 0 0-.288-.712.968.968 0 0 0-.712-.288.968.968 0 0 0-.713.288.967.967 0 0 0-.287.712v3.975a.997.997 0 0 0 .3.725l2.8 2.8a.948.948 0 0 0 .7.275.948.948 0 0 0 .7-.275.948.948 0 0 0 .275-.7.949.949 0 0 0-.275-.7l-2.5-2.5Zm-1 9.4c-1.25 0-2.42-.237-3.513-.712a9.147 9.147 0 0 1-2.85-1.925 9.147 9.147 0 0 1-1.925-2.85A8.707 8.707 0 0 1 3 12.998c0-1.25.237-2.42.712-3.512a9.148 9.148 0 0 1 1.925-2.85 9.148 9.148 0 0 1 2.85-1.925A8.707 8.707 0 0 1 12 3.998c1.25 0 2.42.238 3.512.713a9.147 9.147 0 0 1 2.85 1.925 9.149 9.149 0 0 1 1.925 2.85A8.707 8.707 0 0 1 21 12.998c0 1.25-.238 2.421-.713 3.513a9.148 9.148 0 0 1-1.925 2.85 9.146 9.146 0 0 1-2.85 1.925 8.707 8.707 0 0 1-3.512.712Zm-9.95-14.7a.948.948 0 0 1-.275-.7c0-.283.092-.516.275-.7l2.85-2.85a.948.948 0 0 1 .7-.275.95.95 0 0 1 .7.275.948.948 0 0 1 .275.7.948.948 0 0 1-.275.7l-2.85 2.85a.948.948 0 0 1-.7.275.948.948 0 0 1-.7-.275Zm19.9 0a.948.948 0 0 1-.7.275.948.948 0 0 1-.7-.275l-2.85-2.85a.948.948 0 0 1-.275-.7c0-.283.092-.516.275-.7a.948.948 0 0 1 .7-.275.95.95 0 0 1 .7.275l2.85 2.85a.948.948 0 0 1 .275.7.948.948 0 0 1-.275.7ZM12 19.998c1.95 0 3.604-.679 4.962-2.037C18.321 16.603 19 14.948 19 12.998c0-1.95-.68-3.604-2.038-4.962C15.604 6.678 13.95 5.998 12 5.998c-1.95 0-3.604.68-4.963 2.038C5.68 9.394 5 11.048 5 12.998c0 1.95.68 3.605 2.037 4.963 1.359 1.358 3.013 2.037 4.963 2.037Z" })
334
+ );
335
+ var ClockIcon = IconWrapper(SvgClockIcon);
336
+
330
337
  const SvgCrossIcon = (props) => React__namespace.default.createElement(
331
338
  "svg",
332
339
  Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
@@ -693,6 +700,7 @@ var Icons = /*#__PURE__*/Object.freeze({
693
700
  ChevronDoubleIcon: ChevronDoubleIcon,
694
701
  ChevronDownIcon: ChevronDownIcon,
695
702
  ChevronRightIcon: ChevronRightIcon,
703
+ ClockIcon: ClockIcon,
696
704
  CrossIcon: CrossIcon,
697
705
  DeleteIcon: DeleteIcon,
698
706
  DownArrowIcon: DownArrowIcon,
@@ -5550,6 +5558,7 @@ exports.CheckboxListModal = CheckboxListModal;
5550
5558
  exports.ChevronDoubleIcon = ChevronDoubleIcon;
5551
5559
  exports.ChevronDownIcon = ChevronDownIcon;
5552
5560
  exports.ChevronRightIcon = ChevronRightIcon;
5561
+ exports.ClockIcon = ClockIcon;
5553
5562
  exports.ConfirmationDialog = ConfirmationDialog;
5554
5563
  exports.CrossIcon = CrossIcon;
5555
5564
  exports.DatePicker = Datepicker;