Files
react-test/test/regressions/fixtures/TextField/FilledHiddenLabelInputAdornment.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
447 B
JavaScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import * as React from 'react';
import TextField from '@mui/material/TextField';
import InputAdornment from '@mui/material/InputAdornment';
export default function FilledHiddenLabelInputAdornment() {
return (
<TextField
hiddenLabel
id="filled-hidden-label"
defaultValue="Value"
variant="filled"
InputProps={{
startAdornment: <InputAdornment position="start">kg</InputAdornment>,
}}
/>
);
}