import { XIcon } from "lucide-solid"; import { Toast } from "~/components/ui/toast"; import { IconButton } from "./ui/icon-button"; export const toaster = Toast.createToaster({ placement: "bottom-start", overlap: false, gap: 12, }); export const Toaster = () => ( {(toast) => ( {toast().title} {toast().description} ( )} /> )} );