11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
|
|
import Input from '@mui/joy/Input';
|
||
|
|
|
||
|
|
export default function TriggerFocusInput() {
|
||
|
|
return (
|
||
|
|
<Input
|
||
|
|
placeholder="Looks like I'm focused but no"
|
||
|
|
sx={{ '--Input-focused': 1, width: 256 }}
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
}
|