From 555e22e695fbb196467948afb70348658bfb44a2 Mon Sep 17 00:00:00 2001 From: itschip Date: Sun, 28 Apr 2024 16:38:56 +0200 Subject: [PATCH] fix: replace twitter logo this just adds a bird icon --- apps/phone/src/apps/twitter/components/TwitterTitle.tsx | 7 ++----- apps/phone/src/os/apps/icons/material/app/TWITTER.tsx | 4 ++-- apps/phone/src/os/apps/icons/material/svg/TWITTER.tsx | 4 ++-- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/apps/phone/src/apps/twitter/components/TwitterTitle.tsx b/apps/phone/src/apps/twitter/components/TwitterTitle.tsx index f93d37b12..928874482 100644 --- a/apps/phone/src/apps/twitter/components/TwitterTitle.tsx +++ b/apps/phone/src/apps/twitter/components/TwitterTitle.tsx @@ -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 (
- +
); } \ No newline at end of file diff --git a/apps/phone/src/os/apps/icons/material/app/TWITTER.tsx b/apps/phone/src/os/apps/icons/material/app/TWITTER.tsx index 9b5f9159e..5cfe3399f 100644 --- a/apps/phone/src/os/apps/icons/material/app/TWITTER.tsx +++ b/apps/phone/src/os/apps/icons/material/app/TWITTER.tsx @@ -1,8 +1,8 @@ import React from 'react'; -import { Twitter } from 'lucide-react'; +import { Bird } from 'lucide-react'; const TwitterIcon: React.FC = () => ( - + ); export default TwitterIcon; diff --git a/apps/phone/src/os/apps/icons/material/svg/TWITTER.tsx b/apps/phone/src/os/apps/icons/material/svg/TWITTER.tsx index b0556b37f..0ff0224eb 100644 --- a/apps/phone/src/os/apps/icons/material/svg/TWITTER.tsx +++ b/apps/phone/src/os/apps/icons/material/svg/TWITTER.tsx @@ -1,8 +1,8 @@ import React from 'react'; -import { Twitter } from 'lucide-react'; +import { Bird } from 'lucide-react'; const TwitterIcon: React.FC = () => ( - + ) export default TwitterIcon;