“Kolor czcionki tekstowej MUI” Kod odpowiedzi

Kolor czcionki tekstowej MUI

<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

Tekst Field Wejście Font Kolor Material Material

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

Odpowiedzi podobne do “Kolor czcionki tekstowej MUI”

Pytania podobne do “Kolor czcionki tekstowej MUI”

Więcej pokrewnych odpowiedzi na “Kolor czcionki tekstowej MUI” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu