JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "over-quota-dialog.tsx"

Full Path: /home/markqprx/iniasli.pro/resources/client/dashboard/upgrade/over-quota-dialog.tsx
File size: 767 bytes
MIME-type: text/plain
Charset: utf-8

import {UpgradeDialog} from '@app/dashboard/upgrade/upgrade-dialog';
import {Trans} from '@common/i18n/trans';
import {MessageDescriptor} from '@common/i18n/message-descriptor';
import {useTrans} from '@common/i18n/use-trans';

interface FeatureLockedDialogProps {
  resourceName: MessageDescriptor;
}
export function OverQuotaDialog({resourceName}: FeatureLockedDialogProps) {
  const {trans} = useTrans();
  return (
    <UpgradeDialog
      message={
        <Trans
          message="You've reached the maximum number of :resource allowed for your current plan."
          values={{resource: trans(resourceName)}}
        />
      }
      messageSuffix={
        <Trans message="Upgrade to increase this limit and unlock other features." />
      }
    />
  );
}