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 = () => {
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" />