“MUI Textfield Font Color” Ответ

MUI Textfield Font Color

<TextField
          inputProps={{ style: { fontFamily: 'Arial', color: 'white'}}}
          style={{ flex: 1, margin: '0 20px 0 0', color: 'white'}}
          onChange={(e: ChangeEvent<HTMLInputElement>) => changeSearch(e.target.value)}
          type="text"
          value={reducerState.search}
        />
StuckMaster

Textfield входной шрифт цветной материал реагировать

import React from "react";
import { makeStyles } from "@material-ui/core/styles";
import TextField from "@material-ui/core/TextField";

const useStyles = makeStyles({
  input: {
    color: "blue"
  }
});

export default function App() {
  const classes = useStyles();

  return (
    <TextField
      inputProps={{ className: classes.input }}
      id="outlined-basic"
      label="Write something..."
      variant="outlined"
    />
  );
}
Clumsy Copperhead

Ответы похожие на “MUI Textfield Font Color”

Вопросы похожие на “MUI Textfield Font Color”

Больше похожих ответов на “MUI Textfield Font Color” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования