import React from 'react'; import { CloseIcon, Button, ButtonText, ButtonIcon, InfoIcon, Icon, VStack, HStack, useToast, Toast, ToastTitle, ToastDescription, Pressable, } from '@gluestack-ui/themed'; const ToastBasic = ({ placement = 'top', ...props }: any) => { const toast = useToast(); return ( ); }; ToastBasic.description = 'This is a basic Toast component example. Toasts are used to communicate a state that affects a system, feature or page'; export default ToastBasic; export { Toast, ToastTitle, ToastDescription, useToast, Icon, CloseIcon, InfoIcon, VStack, HStack, Button, ButtonText, ButtonIcon, Pressable, };