diff --git a/src/components/SelectionList/Search/TextWithIconCell.tsx b/src/components/SelectionList/Search/TextWithIconCell.tsx index 8cfbe0933d005..33dd7fc7c7fd8 100644 --- a/src/components/SelectionList/Search/TextWithIconCell.tsx +++ b/src/components/SelectionList/Search/TextWithIconCell.tsx @@ -2,8 +2,7 @@ import React from 'react'; import {View} from 'react-native'; import type {StyleProp, TextStyle} from 'react-native'; import Icon from '@components/Icon'; -import Text from '@components/Text'; -import Tooltip from '@components/Tooltip'; +import TextWithTooltip from '@components/TextWithTooltip'; import useTheme from '@hooks/useTheme'; import useThemeStyles from '@hooks/useThemeStyles'; import type IconAsset from '@src/types/utils/IconAsset'; @@ -24,24 +23,18 @@ export default function TextWithIconCell({icon, text, showTooltip, textStyle}: T } return ( - - - - - {text} - - - + + + + ); }