import * as React from 'react'; import Input from '@mui/material/Input'; function Textarea() { const [value, setValue] = React.useState( `Hey, sorry for being late to respond. Here is a codesandbox. It actually happens when I reduce the font-size of the input. Try adding some text or paste a long paragraph and you will the bottom margin being increased. It works fine with the default font-size.`, ); const handleChange = (event) => { setValue(event.target.value); }; return (
); } export default Textarea;