@vlprojects-chat/chat 0.0.53 → 0.0.56

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,6 +1,6 @@
1
1
  import Message from 'keystone/chat/message';
2
- import User from 'keystone/chat/user';
3
2
  import { FC } from 'react';
3
+ import User from 'keystone/chat/user';
4
4
  export interface IProps {
5
5
  index: number;
6
6
  message: Message;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import User from 'keystone/chat/user';
3
+ interface IProps {
4
+ user: User;
5
+ }
6
+ declare const _default: React.FC<IProps>;
7
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default } from './UserMessageAvatar';