import { View } from 'react-native'; import { Icon } from '../../components/wui-icon'; import { Text } from '../../components/wui-text'; import { useTheme } from '../../hooks/useTheme'; import type { ColorType, PlacementType } from '../../utils/TypesUtil'; import styles from './styles'; export interface TooltipProps { message: string; placement?: PlacementType; } export function Tooltip({ message, placement = 'top' }: TooltipProps) { const Theme = useTheme(); return ( <> {message} ); }