import { Animated, type StyleProp, type ViewStyle } from 'react-native'; import { Text } from '../../components/wui-text'; import { useTheme } from '../../hooks/useTheme'; import type { ColorType, IconType } from '../../utils/TypesUtil'; import { IconBox } from '../wui-icon-box'; import styles from './styles'; export interface SnackbarProps { message: string; iconColor: ColorType; icon: IconType; style?: StyleProp; } export function Snackbar({ message, iconColor, icon, style }: SnackbarProps) { const Theme = useTheme(); return ( {message} ); }