i'm trying to set a min max for the textfield component but i didn't find a documentation about the slotProps api
<TextField
fullWidth
label="Discount %"
value={amount}
type="number"
slotProps={{
input: {min: 0, max:100 },
htmlInput: { min: 0, max: 100},
}}
/>
Note: InputProps got deprecated.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745613191a4636073.html
评论列表(0条)