@luscii-healthtech/web-ui 42.4.4 → 42.5.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.
@@ -35,6 +35,10 @@ type Props = {
35
35
  * Where to position the tip of the chat bubble.
36
36
  */
37
37
  tipPosition?: "top-left" | "top-right" | "bottom-left" | "bottom-right";
38
+ /**
39
+ * Accessory content to show in the footer, after the read receipt.
40
+ */
41
+ footerAccessory?: ReactNode;
38
42
  };
39
43
  type RootProps<C extends ElementType> = Props & ComponentPropsWithoutRef<C> & {
40
44
  as?: C;
@@ -0,0 +1,3 @@
1
+ import { IconProps } from "./types/IconProps.type";
2
+ declare const _default: ({ className, size, color, ...rest }: IconProps) => JSX.Element;
3
+ export default _default;
@@ -108,6 +108,7 @@ export { default as ThresholdIcon } from "./ThresholdIcon";
108
108
  export { default as TrashBinIcon } from "./TrashBinIcon";
109
109
  export { default as TreeIcon } from "./TreeIcon";
110
110
  export { default as UnassignedIcon } from "./UnassignedIcon";
111
+ export { default as UnlinkIcon } from "./UnlinkIcon";
111
112
  export { default as UnpinIcon } from "./UnpinIcon";
112
113
  export { default as UploadIcon } from "./UploadIcon";
113
114
  export { default as VideoIcon } from "./VideoIcon";