如何在没有iconElementLeft的情况下设置App栏组件?

时间:2016-07-30 23:45:40

标签: reactjs material-ui

我需要使用不带左图标的应用栏组件。

我试图忽略iconElementLeft属性,但它不起作用 图标出现了。

import React from 'react';
import AppBar from 'material-ui/AppBar';

const AppBar = () => (
  <AppBar
    title="Title"
  />
);

export default AppBar;

有没有办法删除左图标?

1 个答案:

答案 0 :(得分:30)

showMenuIconButton设为false

<AppBar
    title="Title"
    showMenuIconButton={false}/>

jsfiddle