Skip to content

Commit

Permalink
Merge pull request #1083 from jellyfin/renovate/icons-pack-react-simp…
Browse files Browse the repository at this point in the history
…le-icons-10.x

Update dependency @icons-pack/react-simple-icons to v10
  • Loading branch information
nielsvanvelzen authored Oct 26, 2024
2 parents 56bfb0c + 7b2bbd4 commit c558e35
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
17 changes: 9 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@docusaurus/theme-mermaid": "3.5.2",
"@easyops-cn/docusaurus-search-local": "0.45.0",
"@fontsource/noto-sans": "5.1.0",
"@icons-pack/react-simple-icons": "9.5.0",
"@icons-pack/react-simple-icons": "10.0.0",
"@img-comparison-slider/react": "8.0.2",
"@mdi/js": "7.4.47",
"@mdi/react": "1.6.1",
Expand Down
8 changes: 4 additions & 4 deletions src/components/common/PlatformIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ import {
SiLinux,
SiRoku,
SiSailfishos,
SiUbuntu,
SiWindows
SiUbuntu
} from '@icons-pack/react-simple-icons';
import Icon from '@mdi/react';
import { mdiMonitor, mdiWeb } from '@mdi/js';
Expand Down Expand Up @@ -104,8 +103,9 @@ const PlatformIcon = ({
case Platform.WebOS:
return <SiLg size={size} className={className} />;

case Platform.Windows:
return <SiWindows size={size} className={className} />;
// Removed due to Microsoft, see https://github.com/simple-icons/simple-icons/issues/11236
// case Platform.Windows:
// return <SiWindows size={size} className={className} />;

default:
return null;
Expand Down
4 changes: 2 additions & 2 deletions src/components/contact/TwitterCard.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SiTwitter } from '@icons-pack/react-simple-icons';
import { SiX } from '@icons-pack/react-simple-icons';
import React from 'react';

import './ContactCard.scss';
Expand All @@ -9,7 +9,7 @@ const TwitterCard = () => (
<h3 className='margin-bottom--none' style={{ flexGrow: 1 }}>
Twitter
</h3>
<SiTwitter />
<SiX />
</div>
<div className='card__body'>
Follow us on Twitter for release announcements and other updates, along with general musings.
Expand Down

0 comments on commit c558e35

Please sign in to comment.