Remove client-side isLoggedIn value
[ProtonMail-WebClient.git] / packages / pass / components / Onboarding / Panel / OnboardingIcon.tsx
blobc1edcc9425402a94cb081bc553cc03cc4d477911
1 import { type FC } from 'react';
3 import './OnboardingIcon.scss';
5 export const OnboardingIcon: FC<{ iconSrc: string }> = ({ iconSrc }) => {
6     return (
7         <div className="rounded onboarding-icon flex item-center shrink-0 justify-center">
8             <img src={iconSrc} alt="" className="shrink-0" />
9         </div>
10     );