components

Installation
SKILL.md

MUI Core Components Reference

Input Components

TextField

The most common form input. Wraps FormControl, InputLabel, OutlinedInput/FilledInput/Input, and FormHelperText in one component.

import TextField from '@mui/material/TextField';
import InputAdornment from '@mui/material/InputAdornment';

// Standard usage
<TextField
  label="Email address"
  type="email"
  variant="outlined"          // 'outlined' | 'filled' | 'standard'
  size="small"                // 'small' | 'medium'
Related skills
Installs
9
GitHub Stars
11
First Seen
Apr 4, 2026