import React from 'react'; import { useTranslation } from 'next-i18next'; import { Disable } from 'react-disable'; import { UncontrolledTooltip } from 'reactstrap'; import { useIsGuestUser } from '~/stores/context'; type NotAvailableForGuestProps = { children: JSX.Element } export const NotAvailableForGuest = ({ children }: NotAvailableForGuestProps): JSX.Element => { const { t } = useTranslation(); const { data: isGuestUser } = useIsGuestUser(); const isDisabled = !!isGuestUser; if (!isGuestUser) { return children; } const id = `grw-not-available-for-guest-${Math.random().toString(32).substring(2)}`; return ( <>