import { Icon } from 'antd'; import * as React from 'react'; import styled from 'styled-components'; export const MenuIcon = (props: any) => ; export const Container = styled.div` display: flex; `; export const Button = styled.div` display: flex; align-items: center; justify-content: center; font-size: 14px; color: #666; border-right: 1px solid #eee; padding: 0 10px; cursor: pointer; transition: background-color 0.2s; &:hover { background-color: whitesmoke; } `;