Skip to content

Commit 12574ce

Browse files
committed
chore: better icons for toggle buttons
1 parent 1b40315 commit 12574ce

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Website/components/datamodelview/TimeSlicedSearch.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { useIsMobile } from '@/hooks/use-mobile';
99
import { useDatamodelData } from '@/contexts/DatamodelDataContext';
1010
import { useEntityFilters, useEntityFiltersDispatch } from '@/contexts/EntityFiltersContext';
1111
import { Box, Chip, CircularProgress, Divider, FormControl, IconButton, InputAdornment, InputBase, InputLabel, ListItemIcon, ListItemText, Menu, MenuItem, MenuList, OutlinedInput, Paper, Select, SelectChangeEvent, ToggleButton, ToggleButtonGroup, Tooltip, Typography } from '@mui/material';
12-
import { AbcRounded, AccountTreeRounded, ClearRounded, DataObjectRounded, DescriptionRounded, ExpandMoreRounded, InfoRounded, KeyboardArrowDownRounded, KeyboardArrowUpRounded, NavigateBeforeRounded, NavigateNextRounded, RestartAltRounded, SearchRounded, TableChartRounded } from '@mui/icons-material';
12+
import { AbcRounded, AccountTreeRounded, AlignHorizontalLeftRounded, ClearRounded, ExpandMoreRounded, FormatListBulletedRounded, InfoRounded, KeyboardArrowDownRounded, KeyboardArrowUpRounded, NavigateBeforeRounded, NavigateNextRounded, NotesRounded, RestartAltRounded, SearchRounded } from '@mui/icons-material';
1313

1414
export const SEARCH_SCOPE_KEYS = {
1515
COLUMN_NAMES: 'columnNames',
@@ -514,17 +514,17 @@ export const TimeSlicedSearch = ({
514514
</ToggleButton>
515515
<ToggleButton value={SEARCH_SCOPE_KEYS.COLUMN_DESCRIPTIONS} aria-label="column descriptions">
516516
<Tooltip title="Search in column descriptions" slotProps={{ popper: { sx: { zIndex: 10001 } } }}>
517-
<DescriptionRounded fontSize="small" />
517+
<NotesRounded fontSize="small" />
518518
</Tooltip>
519519
</ToggleButton>
520520
<ToggleButton value={SEARCH_SCOPE_KEYS.COLUMN_DATA_TYPES} aria-label="column data types">
521521
<Tooltip title="Search in column data types" slotProps={{ popper: { sx: { zIndex: 10001 } } }}>
522-
<DataObjectRounded fontSize="small" />
522+
<FormatListBulletedRounded fontSize="small" />
523523
</Tooltip>
524524
</ToggleButton>
525525
<ToggleButton value={SEARCH_SCOPE_KEYS.TABLE_DESCRIPTIONS} aria-label="table descriptions">
526526
<Tooltip title="Search in table descriptions" slotProps={{ popper: { sx: { zIndex: 10001 } } }}>
527-
<TableChartRounded fontSize="small" />
527+
<AlignHorizontalLeftRounded fontSize="small" />
528528
</Tooltip>
529529
</ToggleButton>
530530
<ToggleButton value={SEARCH_SCOPE_KEYS.RELATIONSHIPS} aria-label="relationships">

0 commit comments

Comments
 (0)