Skip to content

Commit

Permalink
[WiP] Try increasing weight
Browse files Browse the repository at this point in the history
  • Loading branch information
ClearlyClaire committed Nov 24, 2023
1 parent fc73229 commit 62275ac
Show file tree
Hide file tree
Showing 242 changed files with 378 additions and 238 deletions.
2 changes: 1 addition & 1 deletion app/javascript/mastodon/components/attachment_list.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import classNames from 'classnames';
import ImmutablePropTypes from 'react-immutable-proptypes';
import ImmutablePureComponent from 'react-immutable-pure-component';

import { ReactComponent as LinkIcon } from 'mastodon/../material-icons/400-20px/link.svg';
import { ReactComponent as LinkIcon } from 'mastodon/../material-icons/500-20px/link.svg';
import { Icon } from 'mastodon/components/icon';

const filename = url => url.split('/').pop().split('#')[0].split('?')[0];
Expand Down
6 changes: 3 additions & 3 deletions app/javascript/mastodon/components/badge.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import PropTypes from 'prop-types';

import { FormattedMessage } from 'react-intl';

import { ReactComponent as GroupsIcon } from 'mastodon/../material-icons/400-20px/group.svg';
import { ReactComponent as PersonIcon } from 'mastodon/../material-icons/400-20px/person.svg';
import { ReactComponent as SmartToyIcon } from 'mastodon/../material-icons/400-20px/smart_toy.svg';
import { ReactComponent as GroupsIcon } from 'mastodon/../material-icons/500-20px/group.svg';
import { ReactComponent as PersonIcon } from 'mastodon/../material-icons/500-20px/person.svg';
import { ReactComponent as SmartToyIcon } from 'mastodon/../material-icons/500-20px/smart_toy.svg';


export const Badge = ({ icon, label, domain }) => (
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/mastodon/components/column_back_button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useCallback } from 'react';

import { FormattedMessage } from 'react-intl';

import { ReactComponent as ArrowBackIcon } from 'mastodon/../material-icons/400-20px/arrow_back.svg';
import { ReactComponent as ArrowBackIcon } from 'mastodon/../material-icons/500-20px/arrow_back.svg';
import { Icon } from 'mastodon/components/icon';
import { ButtonInTabsBar } from 'mastodon/features/ui/util/columns_context';

Expand Down
12 changes: 6 additions & 6 deletions app/javascript/mastodon/components/column_header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import { FormattedMessage, injectIntl, defineMessages } from 'react-intl';
import classNames from 'classnames';
import { withRouter } from 'react-router-dom';

import { ReactComponent as AddIcon } from 'mastodon/../material-icons/400-20px/add.svg';
import { ReactComponent as ArrowBackIcon } from 'mastodon/../material-icons/400-20px/arrow_back.svg';
import { ReactComponent as ChevronLeftIcon } from 'mastodon/../material-icons/400-20px/chevron_left.svg';
import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/400-20px/chevron_right.svg';
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
import { ReactComponent as TuneIcon } from 'mastodon/../material-icons/400-20px/tune.svg';
import { ReactComponent as AddIcon } from 'mastodon/../material-icons/500-20px/add.svg';
import { ReactComponent as ArrowBackIcon } from 'mastodon/../material-icons/500-20px/arrow_back.svg';
import { ReactComponent as ChevronLeftIcon } from 'mastodon/../material-icons/500-20px/chevron_left.svg';
import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/500-20px/chevron_right.svg';
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/500-20px/close.svg';
import { ReactComponent as TuneIcon } from 'mastodon/../material-icons/500-20px/tune.svg';
import { Icon } from 'mastodon/components/icon';
import { ButtonInTabsBar, useColumnsContext } from 'mastodon/features/ui/util/columns_context';
import { WithRouterPropTypes } from 'mastodon/utils/react_router';
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/mastodon/components/copy_icon_button.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import classNames from 'classnames';

import { useDispatch } from 'react-redux';

import { ReactComponent as ContentCopyIcon } from 'mastodon/../material-icons/400-20px/content_copy.svg';
import { ReactComponent as ContentCopyIcon } from 'mastodon/../material-icons/500-20px/content_copy.svg';
import { showAlert } from 'mastodon/actions/alerts';
import { IconButton } from 'mastodon/components/icon_button';

Expand Down
2 changes: 1 addition & 1 deletion app/javascript/mastodon/components/dismissable_banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useCallback, useState } from 'react';

import { defineMessages, useIntl } from 'react-intl';

import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/500-20px/close.svg';
import { bannerSettings } from 'mastodon/settings';

import { IconButton } from './icon_button';
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/mastodon/components/domain.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useCallback } from 'react';

import { defineMessages, useIntl } from 'react-intl';

import { ReactComponent as LockOpenIcon } from 'mastodon/../material-icons/400-20px/lock_open.svg';
import { ReactComponent as LockOpenIcon } from 'mastodon/../material-icons/500-20px/lock_open.svg';

import { IconButton } from './icon_button';

Expand Down
2 changes: 1 addition & 1 deletion app/javascript/mastodon/components/dropdown_menu.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
import { supportsPassiveEvents } from 'detect-passive-events';
import Overlay from 'react-overlays/Overlay';

import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/500-20px/close.svg';
import { CircularProgress } from 'mastodon/components/circular_progress';
import { WithRouterPropTypes } from 'mastodon/utils/react_router';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { FormattedMessage, injectIntl } from 'react-intl';

import { connect } from 'react-redux';

import { ReactComponent as ArrowDropDownIcon } from 'mastodon/../material-icons/400-20px/arrow_drop_down.svg';
import { ReactComponent as ArrowDropDownIcon } from 'mastodon/../material-icons/500-20px/arrow_drop_down.svg';
import { openModal } from 'mastodon/actions/modal';
import { Icon } from 'mastodon/components/icon';
import InlineAccount from 'mastodon/components/inline_account';
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/mastodon/components/icon.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import classNames from 'classnames';

import { ReactComponent as CheckBoxOutlineBlankIcon } from 'mastodon/../material-icons/400-20px/check_box_outline_blank.svg';
import { ReactComponent as CheckBoxOutlineBlankIcon } from 'mastodon/../material-icons/500-20px/check_box_outline_blank.svg';
import { isProduction } from 'mastodon/utils/environment';

interface SVGPropsWithTitle extends React.SVGProps<SVGSVGElement> {
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/mastodon/components/load_gap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useCallback } from 'react';

import { useIntl, defineMessages } from 'react-intl';

import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/400-20px/more_horiz.svg';
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/500-20px/more_horiz.svg';
import { Icon } from 'mastodon/components/icon';

const messages = defineMessages({
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/mastodon/components/media_gallery.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes';

import { debounce } from 'lodash';

import { ReactComponent as VisibilityOffIcon } from 'mastodon/../material-icons/400-20px/visibility_off.svg';
import { ReactComponent as VisibilityOffIcon } from 'mastodon/../material-icons/500-20px/visibility_off.svg';
import { Blurhash } from 'mastodon/components/blurhash';

import { autoPlayGif, displayMedia, useBlurhash } from '../initial_state';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { FormattedMessage } from 'react-intl';

import { connect } from 'react-redux';

import { ReactComponent as CancelPresentationIcon } from 'mastodon/../material-icons/400-20px/cancel_presentation.svg';
import { ReactComponent as CancelPresentationIcon } from 'mastodon/../material-icons/500-20px/cancel_presentation.svg';
import { removePictureInPicture } from 'mastodon/actions/picture_in_picture';
import { Icon } from 'mastodon/components/icon';

Expand Down
2 changes: 1 addition & 1 deletion app/javascript/mastodon/components/poll.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
import escapeTextContentForBrowser from 'escape-html';
import spring from 'react-motion/lib/spring';

import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-20px/check.svg';
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/500-20px/check.svg';
import { Icon } from 'mastodon/components/icon';
import emojify from 'mastodon/features/emoji/emoji';
import Motion from 'mastodon/features/ui/util/optional_motion';
Expand Down
8 changes: 4 additions & 4 deletions app/javascript/mastodon/components/status.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import ImmutablePureComponent from 'react-immutable-pure-component';

import { HotKeys } from 'react-hotkeys';

import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-20px/alternate_email.svg';
import { ReactComponent as PushPinIcon } from 'mastodon/../material-icons/400-20px/push_pin.svg';
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-20px/repeat.svg';
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/400-20px/reply.svg';
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/500-20px/alternate_email.svg';
import { ReactComponent as PushPinIcon } from 'mastodon/../material-icons/500-20px/push_pin.svg';
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/500-20px/repeat.svg';
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/500-20px/reply.svg';
import { Icon } from 'mastodon/components/icon';
import PictureInPicturePlaceholder from 'mastodon/components/picture_in_picture_placeholder';
import { withOptionalRouter, WithOptionalRouterPropTypes } from 'mastodon/utils/react_router';
Expand Down
18 changes: 9 additions & 9 deletions app/javascript/mastodon/components/status_action_bar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ import ImmutablePropTypes from 'react-immutable-proptypes';
import ImmutablePureComponent from 'react-immutable-pure-component';
import { connect } from 'react-redux';

import { ReactComponent as BookmarkIcon } from 'mastodon/../material-icons/400-20px/bookmark-fill.svg';
import { ReactComponent as BookmarkBorderIcon } from 'mastodon/../material-icons/400-20px/bookmark.svg';
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/400-20px/more_horiz.svg';
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/400-20px/repeat.svg';
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/400-20px/reply.svg';
import { ReactComponent as ReplyAllIcon } from 'mastodon/../material-icons/400-20px/reply_all.svg';
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/400-20px/star-fill.svg';
import { ReactComponent as StarBorderIcon } from 'mastodon/../material-icons/400-20px/star.svg';
import { ReactComponent as VisibilityIcon } from 'mastodon/../material-icons/400-20px/visibility.svg';
import { ReactComponent as BookmarkIcon } from 'mastodon/../material-icons/500-20px/bookmark-fill.svg';
import { ReactComponent as BookmarkBorderIcon } from 'mastodon/../material-icons/500-20px/bookmark.svg';
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/500-20px/more_horiz.svg';
import { ReactComponent as RepeatIcon } from 'mastodon/../material-icons/500-20px/repeat.svg';
import { ReactComponent as ReplyIcon } from 'mastodon/../material-icons/500-20px/reply.svg';
import { ReactComponent as ReplyAllIcon } from 'mastodon/../material-icons/500-20px/reply_all.svg';
import { ReactComponent as StarIcon } from 'mastodon/../material-icons/500-20px/star-fill.svg';
import { ReactComponent as StarBorderIcon } from 'mastodon/../material-icons/500-20px/star.svg';
import { ReactComponent as VisibilityIcon } from 'mastodon/../material-icons/500-20px/visibility.svg';
import { ReactComponent as RepeatDisabledIcon } from 'mastodon/../svg-icons/repeat_disabled.svg';
import { ReactComponent as RepeatPrivateIcon } from 'mastodon/../svg-icons/repeat_private.svg';
import { PERMISSION_MANAGE_USERS, PERMISSION_MANAGE_FEDERATION } from 'mastodon/permissions';
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/mastodon/components/status_content.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Link, withRouter } from 'react-router-dom';
import ImmutablePropTypes from 'react-immutable-proptypes';
import { connect } from 'react-redux';

import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/400-20px/chevron_right.svg';
import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/500-20px/chevron_right.svg';
import { Icon } from 'mastodon/components/icon';
import PollContainer from 'mastodon/containers/poll_container';
import { autoPlayGif, languages as preloadedLanguages } from 'mastodon/initial_state';
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/mastodon/components/verified_badge.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-20px/check.svg';
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/500-20px/check.svg';

import { Icon } from './icon';

Expand Down
8 changes: 4 additions & 4 deletions app/javascript/mastodon/components/visibility_icon.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { defineMessages, useIntl } from 'react-intl';

import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/400-20px/alternate_email.svg';
import { ReactComponent as LockIcon } from 'mastodon/../material-icons/400-20px/lock.svg';
import { ReactComponent as LockOpenIcon } from 'mastodon/../material-icons/400-20px/lock_open.svg';
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/400-20px/public.svg';
import { ReactComponent as AlternateEmailIcon } from 'mastodon/../material-icons/500-20px/alternate_email.svg';
import { ReactComponent as LockIcon } from 'mastodon/../material-icons/500-20px/lock.svg';
import { ReactComponent as LockOpenIcon } from 'mastodon/../material-icons/500-20px/lock_open.svg';
import { ReactComponent as PublicIcon } from 'mastodon/../material-icons/500-20px/public.svg';

import { Icon } from './icon';

Expand Down
4 changes: 2 additions & 2 deletions app/javascript/mastodon/features/about/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import { List as ImmutableList } from 'immutable';
import ImmutablePropTypes from 'react-immutable-proptypes';
import { connect } from 'react-redux';

import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/400-20px/chevron_right.svg';
import { ReactComponent as ExpandMoreIcon } from 'mastodon/../material-icons/400-20px/expand_more.svg';
import { ReactComponent as ChevronRightIcon } from 'mastodon/../material-icons/500-20px/chevron_right.svg';
import { ReactComponent as ExpandMoreIcon } from 'mastodon/../material-icons/500-20px/expand_more.svg';
import { fetchServer, fetchExtendedDescription, fetchDomainBlocks } from 'mastodon/actions/server';
import Column from 'mastodon/components/column';
import { Icon } from 'mastodon/components/icon';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { FormattedMessage } from 'react-intl';
import ImmutablePropTypes from 'react-immutable-proptypes';
import ImmutablePureComponent from 'react-immutable-pure-component';

import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-20px/check.svg';
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/400-20px/close.svg';
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/500-20px/check.svg';
import { ReactComponent as CloseIcon } from 'mastodon/../material-icons/500-20px/close.svg';
import { Icon } from 'mastodon/components/icon';

export default class FollowRequestNote extends ImmutablePureComponent {
Expand Down
12 changes: 6 additions & 6 deletions app/javascript/mastodon/features/account/components/header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import { NavLink, withRouter } from 'react-router-dom';
import ImmutablePropTypes from 'react-immutable-proptypes';
import ImmutablePureComponent from 'react-immutable-pure-component';

import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/400-20px/check.svg';
import { ReactComponent as LockIcon } from 'mastodon/../material-icons/400-20px/lock.svg';
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/400-20px/more_horiz.svg';
import { ReactComponent as NotificationsIcon } from 'mastodon/../material-icons/400-20px/notifications.svg';
import { ReactComponent as NotificationsActiveIcon } from 'mastodon/../material-icons/400-20px/notifications_active-fill.svg';
import { ReactComponent as ShareIcon } from 'mastodon/../material-icons/400-20px/share.svg';
import { ReactComponent as CheckIcon } from 'mastodon/../material-icons/500-20px/check.svg';
import { ReactComponent as LockIcon } from 'mastodon/../material-icons/500-20px/lock.svg';
import { ReactComponent as MoreHorizIcon } from 'mastodon/../material-icons/500-20px/more_horiz.svg';
import { ReactComponent as NotificationsIcon } from 'mastodon/../material-icons/500-20px/notifications.svg';
import { ReactComponent as NotificationsActiveIcon } from 'mastodon/../material-icons/500-20px/notifications_active-fill.svg';
import { ReactComponent as ShareIcon } from 'mastodon/../material-icons/500-20px/share.svg';
import { Avatar } from 'mastodon/components/avatar';
import { Badge, AutomatedBadge, GroupBadge } from 'mastodon/components/badge';
import { Button } from 'mastodon/components/button';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import classNames from 'classnames';
import ImmutablePropTypes from 'react-immutable-proptypes';
import ImmutablePureComponent from 'react-immutable-pure-component';

import { ReactComponent as AudiotrackIcon } from 'mastodon/../material-icons/400-20px/music_note.svg';
import { ReactComponent as PlayArrowIcon } from 'mastodon/../material-icons/400-20px/play_arrow.svg';
import { ReactComponent as VisibilityOffIcon } from 'mastodon/../material-icons/400-20px/visibility_off.svg';
import { ReactComponent as AudiotrackIcon } from 'mastodon/../material-icons/500-20px/music_note.svg';
import { ReactComponent as PlayArrowIcon } from 'mastodon/../material-icons/500-20px/play_arrow.svg';
import { ReactComponent as VisibilityOffIcon } from 'mastodon/../material-icons/500-20px/visibility_off.svg';
import { Blurhash } from 'mastodon/components/blurhash';
import { Icon } from 'mastodon/components/icon';
import { autoPlayGif, displayMedia, useBlurhash } from 'mastodon/initial_state';
Expand Down
12 changes: 6 additions & 6 deletions app/javascript/mastodon/features/audio/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import { is } from 'immutable';

import { throttle, debounce } from 'lodash';

import { ReactComponent as DownloadIcon } from 'mastodon/../material-icons/400-20px/download.svg';
import { ReactComponent as PauseIcon } from 'mastodon/../material-icons/400-20px/pause.svg';
import { ReactComponent as PlayArrowIcon } from 'mastodon/../material-icons/400-20px/play_arrow-fill.svg';
import { ReactComponent as VisibilityOffIcon } from 'mastodon/../material-icons/400-20px/visibility_off.svg';
import { ReactComponent as VolumeOffIcon } from 'mastodon/../material-icons/400-20px/volume_off-fill.svg';
import { ReactComponent as VolumeUpIcon } from 'mastodon/../material-icons/400-20px/volume_up-fill.svg';
import { ReactComponent as DownloadIcon } from 'mastodon/../material-icons/500-20px/download.svg';
import { ReactComponent as PauseIcon } from 'mastodon/../material-icons/500-20px/pause.svg';
import { ReactComponent as PlayArrowIcon } from 'mastodon/../material-icons/500-20px/play_arrow-fill.svg';
import { ReactComponent as VisibilityOffIcon } from 'mastodon/../material-icons/500-20px/visibility_off.svg';
import { ReactComponent as VolumeOffIcon } from 'mastodon/../material-icons/500-20px/volume_off-fill.svg';
import { ReactComponent as VolumeUpIcon } from 'mastodon/../material-icons/500-20px/volume_up-fill.svg';
import { Icon } from 'mastodon/components/icon';
import { formatTime, getPointerPosition, fileNameFromURL } from 'mastodon/features/video';

Expand Down
2 changes: 1 addition & 1 deletion app/javascript/mastodon/features/blocks/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { connect } from 'react-redux';

import { debounce } from 'lodash';

import { ReactComponent as BlockIcon } from 'mastodon/../material-icons/400-20px/block-fill.svg';
import { ReactComponent as BlockIcon } from 'mastodon/../material-icons/500-20px/block-fill.svg';

import { fetchBlocks, expandBlocks } from '../../actions/blocks';
import { LoadingIndicator } from '../../components/loading_indicator';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { connect } from 'react-redux';

import { debounce } from 'lodash';

import { ReactComponent as BookmarksIcon } from 'mastodon/../material-icons/400-20px/bookmarks-fill.svg';
import { ReactComponent as BookmarksIcon } from 'mastodon/../material-icons/500-20px/bookmarks-fill.svg';
import { fetchBookmarkedStatuses, expandBookmarkedStatuses } from 'mastodon/actions/bookmarks';
import { addColumn, removeColumn, moveColumn } from 'mastodon/actions/columns';
import ColumnHeader from 'mastodon/components/column_header';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Helmet } from 'react-helmet';

import { connect } from 'react-redux';

import { ReactComponent as PeopleIcon } from 'mastodon/../material-icons/400-20px/group.svg';
import { ReactComponent as PeopleIcon } from 'mastodon/../material-icons/500-20px/group.svg';
import { DismissableBanner } from 'mastodon/components/dismissable_banner';
import { domain } from 'mastodon/initial_state';

Expand Down

0 comments on commit 62275ac

Please sign in to comment.