{`Current plan limits`}
{title}
{isPresent(license) && ( <> -{`You're approaching the limits of your current plan. To increase your limits, please upgrade to a higher-tier plan.`}
)} diff --git a/web/src/shared/components/modals/LicenseModal/LicenseModal.tsx b/web/src/shared/components/modals/LicenseModal/LicenseModal.tsx new file mode 100644 index 0000000000..7664c837f6 --- /dev/null +++ b/web/src/shared/components/modals/LicenseModal/LicenseModal.tsx @@ -0,0 +1,33 @@ +import './style.scss'; +import type { PropsWithChildren } from 'react'; +import { ModalFoundation } from '../../../defguard-ui/components/ModalFoundation/ModalFoundation'; +import type { ModalBase } from '../../../defguard-ui/components/ModalFoundation/types'; +import gridImage from './grid.png?url'; + +type Props = Omit