1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 21:06:42 +07:00

added flow display controls overlay

This commit is contained in:
Fedor Katurov 2021-10-13 16:14:37 +07:00
parent c8204a41a2
commit 5fef4bc804
14 changed files with 327 additions and 116 deletions

View file

@ -0,0 +1,17 @@
import React, { FC } from 'react';
import styles from '~/components/flow/FlowCell/styles.module.scss';
import { Icon } from '~/components/input/Icon';
import { ButtonProps } from '~/utils/types';
import classNames from 'classnames';
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 };