ADG-10295 add encryption settings page

This commit is contained in:
Ildar Kamalov
2025-08-13 19:28:46 +03:00
parent 3f6d759b7f
commit cff3f45883
29 changed files with 980 additions and 82 deletions

View File

@@ -0,0 +1,17 @@
import React from 'react';
import intl from 'panel/common/intl';
import { StatusBlock } from './StatusBlock';
import s from './styles.module.pcss';
type Props = {
type: 'warning' | 'error';
message: string;
};
export const ValidationStatus = ({ type, message }: Props) => (
<StatusBlock variant={type} title={intl.getMessage('encryption_certificate_has_issues')}>
<div className={s.statusText}>{message}</div>
</StatusBlock>
);