Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(unlock-protocol-com): Replace deprecated icons #15359

Merged
merged 1 commit into from
Jan 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import { Button, Modal } from '@unlock-protocol/ui'
import { FaRegCalendarPlus } from 'react-icons/fa'

import {
SiGooglecalendar,
SiMicrosoft as SiMicrosoftoffice,
SiMicrosoftoutlook,
} from 'react-icons/si'
import { BsCalendarDate } from 'react-icons/bs'
import { SiGooglecalendar } from 'react-icons/si'
import { PiMicrosoftOutlookLogoFill } from 'react-icons/pi'
import { BsCalendarDate, BsMicrosoft } from 'react-icons/bs'

import { google, outlook, office365, ics } from 'calendar-link'
import React, { useState } from 'react'
Expand Down Expand Up @@ -95,7 +92,7 @@ export const UpcomingEventBox: React.FC<UpcomingEventBoxProps> = ({
className="hover:underline"
href={outlook(calendarEvent)}
>
<SiMicrosoftoutlook className="inline w-8 h-8 mr-3" />
<PiMicrosoftOutlookLogoFill className="inline w-8 h-8 mr-3" />
Microsoft Outlook
</Link>
</li>
Expand All @@ -105,7 +102,7 @@ export const UpcomingEventBox: React.FC<UpcomingEventBoxProps> = ({
className="hover:underline"
href={office365(calendarEvent)}
>
<SiMicrosoftoffice className="inline w-8 h-8 mr-3" />
<BsMicrosoft className="inline w-8 h-8 mr-3" />
Microsoft Office 365
</Link>
</li>
Expand Down
Loading