I need to use app bar component without left icon.
I tried to ignore the iconElementLeft property but it doesn't work and the icon appears yet.
import React from 'react';
import AppBar from 'material-ui/AppBar';
const AppBar = () => (
<AppBar
title="Title"
/>
);
export default AppBar;
Is there a way to remove the left icon?
Set showMenuIconButton
to false
.
<AppBar
title="Title"
showMenuIconButton={false}/>
jsfiddle
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With