Change MUI textField focus ring color

PHOTO EMBED

Mon Jul 18 2022 14:43:22 GMT+0000 (Coordinated Universal Time)

Saved by @avivdaniel #javascript

import styled from "styled-components";
import {TextField} from "@material-ui/core";

const WhiteBorderTextField = styled(TextField)`
  & label.Mui-focused {
    color: white;
  }
  & .MuiOutlinedInput-root {
    &.Mui-focused fieldset {
      border-color: white;
    }
  }
`;
content_copyCOPY

https://stackoverflow.com/questions/52911169/how-to-change-the-border-color-of-mui-textfield