import { ChevronLeft } from '@transferwise/icons'; import { clsx } from 'clsx'; import { motion } from 'framer-motion'; interface Props { shouldShow: boolean; } export const Chevron = ({ shouldShow = true }: Props) => { return (
); };