mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
20 lines
493 B
TypeScript
20 lines
493 B
TypeScript
import React, { FC } from 'react';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import { Icon } from '~/components/input/Icon';
|
|
import { ButtonProps } from '~/utils/types';
|
|
|
|
import styles from './styles.module.scss';
|
|
|
|
interface Props extends ButtonProps {}
|
|
|
|
const MenuDots: FC<Props> = ({ ...rest }) => (
|
|
<button {...rest} className={classNames(styles.button, rest.className)}>
|
|
<div className={styles.dots}>
|
|
<Icon icon="menu" size={24} />
|
|
</div>
|
|
</button>
|
|
);
|
|
|
|
export { MenuDots };
|