Skip to content

Commit

Permalink
fix: replace twitter logo
Browse files Browse the repository at this point in the history
this just adds a bird icon
  • Loading branch information
itschip committed Apr 28, 2024
1 parent d865f69 commit 555e22e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
7 changes: 2 additions & 5 deletions apps/phone/src/apps/twitter/components/TwitterTitle.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import React from 'react';
import Paper from '@mui/material/Paper';
import { styled } from '@mui/material';
import { Twitter } from 'lucide-react';
import { Bird } from 'lucide-react';

export function LifeInvaderTitle() {
return (
<div className='h-[50px] w-full flex nowrap flex-row justify-center items-center bg-neutral-700 rounded border border-neutral-600'>
<Twitter size={24} className='text-sky-400'/>
<Bird size={24} className='text-sky-400'/>
</div>
);
}
4 changes: 2 additions & 2 deletions apps/phone/src/os/apps/icons/material/app/TWITTER.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react';
import { Twitter } from 'lucide-react';
import { Bird } from 'lucide-react';

const TwitterIcon: React.FC = () => (
<Twitter size={30} />
<Bird size={30} />
);

export default TwitterIcon;
4 changes: 2 additions & 2 deletions apps/phone/src/os/apps/icons/material/svg/TWITTER.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react';
import { Twitter } from 'lucide-react';
import { Bird } from 'lucide-react';

const TwitterIcon: React.FC = () => (
<Twitter size={16} />
<Bird size={16} />
)

export default TwitterIcon;

0 comments on commit 555e22e

Please sign in to comment.