import classNames from 'classnames'; import { type FunctionComponent } from 'react'; import { ArrowDown, ArrowLeft, ArrowRight, ArrowUp } from '@/icons'; import { Key } from '../../Key'; import styles from './Arrows.module.scss'; interface Props { className?: string; } export const Arrows: FunctionComponent = ({ className }) => (
);