Merge pull request #9501 from matrix-org/psg-863/dm-learn-more-rename

Device manager - add extra details to device security and renaming (PSG-863)
This commit is contained in:
Johannes Marbach 2022-10-27 08:40:27 +02:00 committed by GitHub
commit af47b74992
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 248 additions and 63 deletions

View file

@ -21,12 +21,12 @@ import Modal from '../../../Modal';
import InfoDialog from '../dialogs/InfoDialog';
import AccessibleButton, { IAccessibleButtonProps } from './AccessibleButton';
interface Props extends IAccessibleButtonProps {
export interface LearnMoreProps extends IAccessibleButtonProps {
title: string;
description: string | React.ReactNode;
}
const LearnMore: React.FC<Props> = ({
const LearnMore: React.FC<LearnMoreProps> = ({
title,
description,
...rest