import React from 'react'; import { Normalize } from '../../utils/normalize'; import RNTooltip from 'rn-tooltip'; import { useTheme } from '../../theme/ThemeProvider'; import { Text } from '../Text'; import { Box } from '../Box'; import { Info } from 'phosphor-react-native'; export const DisabledCardTooltip = ({ message = '', title, width = 328, height = 84, }: { message: string; title?: string; width?: number | string; height?: number | string; }) => { const { fonts, colors } = useTheme(); return ( {title ? ( {title} ) : null} {message} } > ); };