import clsx from "clsx" import React from "react" import { Toast } from "react-hot-toast" export type TableToasterContainerProps = { children: React.ReactElement[] | React.ReactElement | React.ReactNode toast?: Toast } export const TableToasterContainer = ({ children, toast, }: TableToasterContainerProps) => { return (