import React from 'react'; import { Info } from 'phosphor-react-native'; import { StyleSheet } from 'react-native'; import RNTooltip from 'rn-tooltip'; import { Normalize } from '../../utils/normalize'; import { colors, fonts } from '../../theme/theme'; import { Box } from '../Box'; import { Text } from '../Text'; interface IProps { title: string; message?: string; } export const Tooltip = ({ title, message = '' }: IProps) => { return ( {title} {message} } > ); }; const styles = StyleSheet.create({ container: { borderRadius: 4, }, });