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:
parent
c8204a41a2
commit
5fef4bc804
14 changed files with 327 additions and 116 deletions
17
src/components/common/MenuDots/index.tsx
Normal file
17
src/components/common/MenuDots/index.tsx
Normal 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 };
|
Loading…
Add table
Add a link
Reference in a new issue