13 lines
388 B
JavaScript
13 lines
388 B
JavaScript
import { connect } from 'react-redux';
|
|
|
|
import NotificationsIcon from '@/material-icons/400-24px/notifications-fill.svg?react';
|
|
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);
|