민프
[React][TypeScript][MUI] MUI TextField 커스텀해보자 본문
커스텀 하고싶은 부분은
1. width
2. height
3. 텍스트 필드 앞부분 혹은 뒷부분에 아이콘 및 이미지 넣기
4. border
5. background
<TextField
InputProps={{
//텍스트 필드 앞부분에 아이콘 넣기 (뒤에도 가능)
startAdornment: (
<InputAdornment position="start">
<BiSearch size={15} />
</InputAdornment>
),
}}
sx={{
//border 변경
"& fieldset": { border: "none" },
//배경색상 변경
backgroundColor: "white",
//height 및 width 변경
"& .MuiInputBase-root": {
height: 48,
},
}}
/>
결과화면
'[React]' 카테고리의 다른 글
[React][TypeScript] QR코드를 생성해보자 (feat. qrcode.react) (0) | 2023.03.23 |
---|---|
[React][TypeScript] npm http-server은 무엇일까? (0) | 2023.03.21 |
[React][TypeScript][MUI] MUI DatePicker를 커스텀 해보자 (0) | 2023.03.20 |
[React][Typscript] root에서 자동으로 padding Bottom이 생기는 이유가 뭘까? (2) | 2023.03.10 |
[React][TypeScript][MUI] MUI TextField의 스타일을 변경해보자(feat: endAdorment) (0) | 2023.03.09 |
Comments