Skip to content

Commit

Permalink
Fix Dependencies.test.js
Browse files Browse the repository at this point in the history
  • Loading branch information
hbjORbj committed Dec 13, 2022
1 parent d1c1f6b commit 99b566f
Showing 1 changed file with 19 additions and 22 deletions.
41 changes: 19 additions & 22 deletions docs/src/modules/sandbox/Dependencies.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,6 @@ import { CssVarsProvider, useColorScheme } from '@mui/joy/styles';
import type { Theme } from '@mui/joy/styles';
import Box from '@mui/joy/Box';
import Typography from '@mui/joy/Typography';
import FormControl from '@mui/joy/FormControl';
import Input from '@mui/joy/Input';
import IconButton from '@mui/joy/IconButton';
Expand Down Expand Up @@ -436,27 +435,25 @@ export default function EmailExample() {
</IconButton>
<Typography fontWeight={700}>Email</Typography>
</Box>
<FormControl>
<Input
size="sm"
placeholder="Search anything…"
startDecorator={<SearchRoundedIcon color="primary" />}
endDecorator={
<IconButton variant="outlined" size="sm" color="neutral">
<Typography fontWeight="lg" fontSize="sm" textColor="text.tertiary">
/
</Typography>
</IconButton>
}
sx={{
flexBasis: '500px',
display: {
xs: 'none',
sm: 'flex',
},
}}
/>
</FormControl>
<Input
size="sm"
placeholder="Search anything…"
startDecorator={<SearchRoundedIcon color="primary" />}
endDecorator={
<IconButton variant="outlined" size="sm" color="neutral">
<Typography fontWeight="lg" fontSize="sm" textColor="text.tertiary">
/
</Typography>
</IconButton>
}
sx={{
flexBasis: '500px',
display: {
xs: 'none',
sm: 'flex',
},
}}
/>
<Box sx={{ display: 'flex', flexDirection: 'row', gap: 1.5 }}>
<IconButton
size="sm"
Expand Down

0 comments on commit 99b566f

Please sign in to comment.