Skip to content

Commit

Permalink
use design tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Dec 21, 2022
1 parent e4979d1 commit acc32bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/data/material/components/autocomplete/GoogleMaps.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export default function GoogleMaps() {
<Box
key={index}
component="span"
sx={{ fontWeight: part.highlight ? 700 : 400 }}
sx={{ fontWeight: part.highlight ? 'bold' : 'regular' }}
>
{part.text}
</Box>
Expand Down
2 changes: 1 addition & 1 deletion docs/data/material/components/autocomplete/GoogleMaps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default function GoogleMaps() {
<Box
key={index}
component="span"
sx={{ fontWeight: part.highlight ? 700 : 400 }}
sx={{ fontWeight: part.highlight ? 'bold' : 'regular' }}
>
{part.text}
</Box>
Expand Down

0 comments on commit acc32bd

Please sign in to comment.