wacomm 2.31.1 → 2.31.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.
@@ -1,8 +1,9 @@
1
1
  import { ZeroFuncType } from 'waujs';
2
2
  interface MessageTagProps {
3
+ label?: string;
3
4
  isHighlighted?: boolean;
4
5
  onClick?: ZeroFuncType;
5
6
  className?: string;
6
7
  }
7
- declare function MessageTag({ isHighlighted, onClick, className }: MessageTagProps): import("react").JSX.Element;
8
+ declare function MessageTag({ label, isHighlighted, onClick, className }: MessageTagProps): import("react").JSX.Element;
8
9
  export default MessageTag;