11import { ArrowBackIosRounded , Refresh } from '@mui/icons-material'
2- import { Divider , TextField , Tooltip } from '@mui/material'
2+ import { Divider , TextField } from '@mui/material'
33import { fetchColumnLineage } from '../../store/actionCreators'
44import { theme } from '../../helpers/theme'
55import { useNavigate , useParams , useSearchParams } from 'react-router-dom'
66import Box from '@mui/material/Box'
77import IconButton from '@mui/material/IconButton'
8+ import MQTooltip from '../../components/core/tooltip/MQTooltip'
89import MqText from '../../components/core/text/MqText'
910import React from 'react'
1011
@@ -35,11 +36,11 @@ export const ActionBar = ({ fetchColumnLineage, depth, setDepth }: ActionBarProp
3536 borderColor = { theme . palette . secondary . main }
3637 >
3738 < Box display = { 'flex' } alignItems = { 'center' } >
38- < Tooltip title = { 'Back to datasets' } >
39+ < MQTooltip title = { 'Back to datasets' } >
3940 < IconButton size = { 'small' } sx = { { mr : 2 } } onClick = { ( ) => navigate ( '/datasets' ) } >
4041 < ArrowBackIosRounded fontSize = { 'small' } />
4142 </ IconButton >
42- </ Tooltip >
43+ </ MQTooltip >
4344 < MqText heading > Datasets</ MqText >
4445 < Divider orientation = 'vertical' flexItem sx = { { mx : 2 } } />
4546 < Box >
@@ -58,7 +59,7 @@ export const ActionBar = ({ fetchColumnLineage, depth, setDepth }: ActionBarProp
5859 </ Box >
5960 </ Box >
6061 < Box display = { 'flex' } alignItems = { 'center' } >
61- < Tooltip title = { 'Refresh' } >
62+ < MQTooltip title = { 'Refresh' } >
6263 < IconButton
6364 sx = { { mr : 2 } }
6465 color = { 'primary' }
@@ -71,7 +72,7 @@ export const ActionBar = ({ fetchColumnLineage, depth, setDepth }: ActionBarProp
7172 >
7273 < Refresh fontSize = { 'small' } />
7374 </ IconButton >
74- </ Tooltip >
75+ </ MQTooltip >
7576 < TextField
7677 id = 'column-level-depth'
7778 type = 'number'
0 commit comments