从语义UI反应下拉菜单中删除插入符号

arc*_*ryx 6 reactjs semantic-ui semantic-ui-react

有谁知道如何删除<Menu><Dropdown>...组件上的插入符号?

据我所知,该组件的属性列表没有标志。有任何人对此有经验吗?

import React from 'react'
import { Dropdown, Menu } from 'semantic-ui-react'
import { Menu as MenuIcon } from 'react-feather'

// this automatically renders a right-hand caret on the menu
// I added my own icon 'MenuIcon' from the feather icon set 
// and i want to get rid of the caret
const Header = () => (
  <Menu vertical compact>
    <Dropdown item text={<MenuIcon/>}>
      <Dropdown.Menu>
        <Dropdown.Item>Electronics</Dropdown.Item>
        <Dropdown.Item>Automotive</Dropdown.Item>
        <Dropdown.Item>Home</Dropdown.Item>
      </Dropdown.Menu>
    </Dropdown>
  </Menu>
)

export default Header
Run Code Online (Sandbox Code Playgroud)

Ole*_*hov 10

Dropdown组件实现了icon 简写形式,因此您可以使用以下代码:

 <Dropdown icon={null} /> // will render nothing
 <Dropdown icon='remove' /> // will render 'remove' icon
 <Dropdown icon={{ name: 'remove', onClick: () => console.log('iconClick') /> // will render 'remove' icon and add event hanlder
 <Dropdown icon={<Icon name='remove' />} /> // will render 'Icon' component
Run Code Online (Sandbox Code Playgroud)