Add cursor-pointer to emoji reactions in StatusInteractionBar
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
87e39f52e6
commit
c43ad4fe88
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ const StatusInteractionBar: React.FC<IStatusInteractionBar> = ({ status }): JSX.
|
|||
return (
|
||||
<HStack space={0.5} className='emoji-react p-1' alignItems='center' key={i}>
|
||||
<Emoji
|
||||
className='emoji-react__emoji w-5 h-5 flex-none'
|
||||
className={classNames('emoji-react__emoji w-5 h-5 flex-none', { 'cursor-pointer': features.exposableReactions })}
|
||||
emoji={e.get('name')}
|
||||
onClick={features.exposableReactions ? handleOpenReactionsModal(e) : undefined}
|
||||
/>
|
||||
|
|
Loading…
Reference in a new issue