React material-ui: centering items on Toolbar
I am trying to implement a toolbar on a page in which I have three ToolbarGroup components: <Toolbar> <ToolbarGroup firstChild={true} float="left"> {prevButton} </ToolbarGroup> <ToolbarGroup> {releaseBtn} </ToolbarGroup> <ToolbarGroup lastChild={true} float="right"> {nextButton} </ToolbarGroup> </Toolbar> The general idea is that prevButton should render all the way to the left of the toolbar (it does), nextButton should render all the way to the right (it does)... and that releaseBtn should be centered on the toolbar (not currently happening). Per the material-ui docs there doesn't appear to