@luscii-healthtech/web-ui 2.22.1 → 2.22.3

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,3 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from "./types/IconProps.type";
3
+ export declare const LinkIcon: (props: IconProps) => JSX.Element;
package/dist/index.d.ts CHANGED
@@ -92,6 +92,7 @@ export { GearIcon } from "./components/Icons/GearIcon";
92
92
  export { GroupIcon } from "./components/Icons/GroupIcon";
93
93
  export { HeartIcon } from "./components/Icons/HeartIcon";
94
94
  export { LeftArrowIcon } from "./components/Icons/LeftArrowIcon";
95
+ export { LinkIcon } from "./components/Icons/LinkIcon";
95
96
  export { LightBulbIcon } from "./components/Icons/LightBulbIcon";
96
97
  export { LockIcon } from "./components/Icons/LockIcon";
97
98
  export { MessagesIcon } from "./components/Icons/MessagesIcon";
@@ -7353,6 +7353,30 @@ var HeartIcon = function HeartIcon(props) {
7353
7353
  }));
7354
7354
  };
7355
7355
 
7356
+ var LinkIcon = function LinkIcon(props) {
7357
+ return /*#__PURE__*/React__default.createElement("svg", {
7358
+ className: props.className,
7359
+ onClick: props.onClick,
7360
+ role: props.onClick ? "button" : undefined,
7361
+ width: "24",
7362
+ height: "24",
7363
+ viewBox: "0 0 24 24",
7364
+ fill: "none",
7365
+ xmlns: "http://www.w3.org/2000/svg"
7366
+ }, /*#__PURE__*/React__default.createElement("path", {
7367
+ d: "M10.8021 7H7.33331C6.22874 7 5.33331 7.89543 5.33331 9V17.5C5.33331 18.6046 6.22874 19.5 7.33331 19.5H15.8333C16.9379 19.5 17.8333 18.6046 17.8333 17.5V14.0312",
7368
+ stroke: "#0074DD",
7369
+ "stroke-width": "2",
7370
+ "stroke-linecap": "round"
7371
+ }), /*#__PURE__*/React__default.createElement("path", {
7372
+ d: "M9.5 15.3334L18.6667 6.16675M18.6667 6.16675H14.5M18.6667 6.16675V10.3334",
7373
+ stroke: "#0074DD",
7374
+ "stroke-width": "2",
7375
+ "stroke-linecap": "round",
7376
+ "stroke-linejoin": "round"
7377
+ }));
7378
+ };
7379
+
7356
7380
  var LightBulbIcon = function LightBulbIcon(props) {
7357
7381
  return /*#__PURE__*/React__default.createElement("svg", {
7358
7382
  className: props.className,
@@ -7651,6 +7675,7 @@ exports.Input = Input;
7651
7675
  exports.LeftArrowIcon = LeftArrowIcon;
7652
7676
  exports.LightBulbIcon = LightBulbIcon;
7653
7677
  exports.Line = Line;
7678
+ exports.LinkIcon = LinkIcon;
7654
7679
  exports.List = List;
7655
7680
  exports.LoadingIndicator = LoadingIndicator;
7656
7681
  exports.LockIcon = LockIcon;