mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-07 06:08:54 +00:00
26 lines
682 B
TypeScript
26 lines
682 B
TypeScript
import Box from "@mui/material/Box";
|
|
import TextField from "@mui/material/TextField";
|
|
import StyledEngineProvider from "@mui/styled-engine/StyledEngineProvider";
|
|
|
|
export default function MultilineTextFields() {
|
|
return (
|
|
<StyledEngineProvider injectFirst>
|
|
<Box
|
|
component="form"
|
|
sx={{ "& .MuiTextField-root": { m: 1, width: "25ch" } }}
|
|
noValidate
|
|
autoComplete="off"
|
|
>
|
|
<div>
|
|
<TextField
|
|
className="bio-input"
|
|
id="outlined-multiline-flexible"
|
|
label="Multiline"
|
|
multiline
|
|
maxRows={4}
|
|
/>
|
|
</div>
|
|
</Box>
|
|
</StyledEngineProvider>
|
|
);
|
|
}
|