import * as React from 'react'; import { Avatar, Chat, ChatItemProps, ReactionProps, ShorthandCollection } from '@fluentui/react-northstar'; import { EmojiIcon, LikeIcon } from '@fluentui/react-icons-northstar'; const reactions: ShorthandCollection = [ { icon: , content: '1K', key: 'likes', variables: { meReacting: true }, as: 'button' }, { icon: , content: 2, key: 'smiles', as: 'button' }, ]; const items: ShorthandCollection = [ { attached: 'top', contentPosition: 'end', message: ( ), key: 'message-1', }, { attached: 'bottom', contentPosition: 'end', key: 'message-2', message: ( ), }, { gutter: , message: , key: 'message-3', }, ]; const MessageReactionsWithPopup = () => ; export default MessageReactionsWithPopup;