7 lines
283 B
TypeScript
7 lines
283 B
TypeScript
import MuiTextField, { type TextFieldProps } from "@mui/material/TextField";
|
|
|
|
/** App TextField: small + outlined + full width by default. */
|
|
export default function TextField(props: TextFieldProps) {
|
|
return <MuiTextField size="small" variant="outlined" fullWidth {...props} />;
|
|
}
|