1
0

fix(action_bar): icon problem

Signed-off-by: 무라쿠모 <space@psec.dev>
This commit is contained in:
オスカー、 2024-08-28 16:34:07 +09:00
parent 4ecb665cb9
commit 875824bc2e
Signed by: SWREI
GPG Key ID: 139D6573F92DA9F7
2 changed files with 4 additions and 2 deletions

View File

@ -11,6 +11,7 @@ import { connect } from 'react-redux';
import BookmarkIcon from '@/material-icons/400-24px/bookmark-fill.svg';
import BookmarkBorderIcon from '@/material-icons/400-24px/bookmark.svg?react';
import AddReactionIcon from '@/material-icons/400-24px/add_reaction.svg?react';
import MoreHorizIcon from '@/material-icons/400-24px/more_horiz.svg?react';
import RepeatIcon from '@/material-icons/400-24px/repeat.svg?react';
import ReplyIcon from '@/material-icons/400-24px/reply.svg?react';
@ -387,7 +388,7 @@ class StatusActionBar extends ImmutablePureComponent {
title={intl.formatMessage(messages.react)}
disabled={!canReact}
icon='plus'
iconComponent={AddIcon}
iconComponent={AddReactionIcon}
/>
);

View File

@ -10,6 +10,7 @@ import {connect} from 'react-redux';
import BookmarkIcon from '@/material-icons/400-24px/bookmark-fill.svg?react';
import BookmarkBorderIcon from '@/material-icons/400-24px/bookmark.svg?react';
import AddReactionIcon from '@/material-icons/400-24px/add_reaction.svg?react';
import MoreHorizIcon from '@/material-icons/400-24px/more_horiz.svg?react';
import RepeatIcon from '@/material-icons/400-24px/repeat.svg?react';
import ReplyIcon from '@/material-icons/400-24px/reply.svg?react';
@ -292,7 +293,7 @@ class ActionBar extends PureComponent {
title={intl.formatMessage(messages.react)}
disabled={!canReact}
icon='plus'
iconComponent={AddIcon}
iconComponent={AddReactionIcon}
/>
);