File tree Expand file tree Collapse file tree 1 file changed +12
-8
lines changed
docs/data/joy/components/autocomplete Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -13,16 +13,20 @@ export default function ControllableStates() {
13
13
14
14
return (
15
15
< div >
16
- < Typography >
17
- value:{ ' ' }
18
- < Typography fontWeight = "md" variant = "soft" >
19
- { `${ value !== null ? `'${ value } '` : 'null' } ` }
16
+ < Typography level = "body2" sx = { { mb : 1 } } >
17
+ < code > value: </ code >
18
+ < Typography variant = "soft" sx = { { py : 0.4 } } >
19
+ < code >
20
+ < strong > { `${ value !== null ? `'${ value } '` : 'null' } ` } </ strong >
21
+ </ code >
20
22
</ Typography >
21
23
</ Typography >
22
- < Typography >
23
- inputValue:{ ' ' }
24
- < Typography fontWeight = "md" variant = "soft" >
25
- { `'${ inputValue } '` }
24
+ < Typography level = "body2" >
25
+ < code > inputValue: </ code >
26
+ < Typography variant = "soft" sx = { { py : 0.4 } } >
27
+ < code >
28
+ < strong > { `'${ inputValue } '` } </ strong >
29
+ </ code >
26
30
</ Typography >
27
31
</ Typography >
28
32
< br />
You can’t perform that action at this time.
0 commit comments