Remove client-side isLoggedIn value
[ProtonMail-WebClient.git] / packages / pass / components / Onboarding / Panel / OnboardingArrow.tsx
blobd1b155be93e56f4d94687a48fa2188122f4a6cff
1 import { type FC } from 'react';
3 import { c } from 'ttag';
5 import { Button } from '@proton/atoms';
6 import createItemArrow from '@proton/pass/assets/b2b-onboarding/create-arrow.svg';
8 export const OnboardingArrow: FC = () => {
9     return (
10         <div className="relative flex flex-nowrap items-end">
11             <Button pill shape="outline" color="norm" className="border-primary pointer-events-none">{c('Action')
12                 .t`Create new items`}</Button>
13             <img src={createItemArrow} alt="" className="pb-4" />
14         </div>
15     );