Skip to content

Commit

Permalink
feat(#495): Change outdated twitter icon
Browse files Browse the repository at this point in the history
Related to #495
  • Loading branch information
ahmedhalac committed Nov 14, 2024
1 parent 2e9e59a commit dc4fb56
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/components/desktop/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ const SignupButton = styled(Button)`

const StyledSocialButtons = styled(SocialButtons)`
margin: 0 5px;
display: flex;
a {
color: ${({ theme }) => theme.text};
Expand Down
3 changes: 3 additions & 0 deletions src/components/entry/icons/X-Twitter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions src/components/ui/SocialButtons.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ import {
Github,
Instagram,
Slack,
Twitter,
} from '@styled-icons/boxicons-logos'

import { ReactComponent as XLogo } from '../../components/entry/icons/X-Twitter.svg'

const SocialButtons = ({ ...props }) => (
<div {...props}>
<a href="https://github.com/falling-fruit" alt="GitHub" title="GitHub">
Expand All @@ -28,8 +29,8 @@ const SocialButtons = ({ ...props }) => (
>
<Instagram />
</a>
<a href="https://twitter.com/Falling_Fruit" alt="Twitter" title="Twitter">
<Twitter />
<a href="https://x.com/Falling_Fruit" alt="Twitter" title="Twitter">
<XLogo />
</a>
</div>
)
Expand Down

0 comments on commit dc4fb56

Please sign in to comment.