134de736dc
Co-authored-by: Renaud Chaput <renchap@gmail.com>
14 lines
414 B
JavaScript
14 lines
414 B
JavaScript
import { connect } from 'react-redux';
|
|
|
|
import { ReactComponent as NotificationsIcon } from '@material-symbols/svg-600/outlined/notifications-fill.svg';
|
|
|
|
import { IconWithBadge } from 'mastodon/components/icon_with_badge';
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
count: state.getIn(['notifications', 'unread']),
|
|
id: 'bell',
|
|
icon: NotificationsIcon,
|
|
});
|
|
|
|
export default connect(mapStateToProps)(IconWithBadge);
|