Top "Material-ui" questions

React Components that Implement Google's Material Design.

How to use an SVG file in a SvgIcon in Material-UI

I've got an SVG file and I want to make an SvgIcon component out of it, how should I do …

svg material-ui
How to disable the hover effect of material-ui button inside of a styled component

I added the css hover property to disable the button's hover effect, but it seems not work for my case, …

css reactjs hover material-ui styled-components
Set TextField height material-ui

index.js import React from 'react' import TextField from '@material-ui/core/TextField' import style from './style' import withStyles …

css reactjs material-ui
React Material UI - Export multiple higher order components

I'm stuck on exporting material-ui styles with redux connector. Here is my code: import React, { Component } from 'react'; import { connect } …

reactjs redux react-redux material-ui
How to handle "outside" click on Dialog (Modal) with material-ui

My box closes when clicking outside of the box making me lose all the input. I want my box to …

javascript reactjs dialog modal-dialog material-ui
Material-ui Autocomplete warning The value provided to Autocomplete is invalid

I am working with React and material-ui.. I just realize i have a warning with the Autocomplete component when i …

reactjs autocomplete material-ui
Content beneath fixed AppBar

Probably a basic question, but I couldn't find any example in the documentation. Using material-ui-next beta.30. I have the following: …

javascript reactjs material-ui
Text Area in material-ui

Could someone help me making a TextField personalization into a TextArea, using material-ui library? I am not finding any parameter …

javascript reactjs material-ui
How do I avoid 'Function components cannot be given refs' when using react-router-dom?

I have the following (using Material UI).... import React from "react"; import { NavLink } from "react-router-dom"; import Tabs from "@material-ui/core/…

reactjs react-router material-ui
How to set focus to a materialUI TextField?

How can I set the focus on a material-ui TextField component? componentDidMount() { ReactDom.findDomNode(this.refs.myControl).focus() } I have …

material-ui