import React, { FC } from 'react'; import styles from './styles.module.scss'; import { Icon } from '~/components/input/Icon'; import classNames from 'classnames'; import { Toggle } from '~/components/input/Toggle'; import { Group } from '~/components/containers/Group'; import { FlowDisplayVariant } from '~/redux/types'; interface Props { onClose: () => void; currentView: FlowDisplayVariant; descriptionEnabled: boolean; hasDescription: boolean; toggleViewDescription: () => void; setViewSingle: () => void; setViewHorizontal: () => void; setViewVertical: () => void; setViewQuadro: () => void; } const FlowCellMenu: FC = ({ onClose, hasDescription, toggleViewDescription, descriptionEnabled, setViewSingle, setViewHorizontal, setViewVertical, setViewQuadro, }) => { return (
{onClose && ( )}
{hasDescription && ( Текст )}
); }; export { FlowCellMenu };