How can I change the text color in the value
in TextField
to red?
I have tried help I found on the internet, but it doesn't work, I am thinking that maybe it is because I am using Typescript, I am new to Typescript.
import React, { useEffect, useState } from 'react';
import { TextField } from '@material-ui/core';
<TextField label="Date" value={object.date} fullWidth />
You can set the color property in the style of the input component.
<TextField inputProps={{ style: { color: "red" } }} />