Styling adjustments to timeline notifications
This commit is contained in:
parent
4bed918cf8
commit
7f34bedd87
22 changed files with 437 additions and 360 deletions
|
@ -1,14 +1,15 @@
|
|||
// Copyright 2018-2020 Signal Messenger, LLC
|
||||
// Copyright 2018-2021 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { LocalizerType } from '../../types/Util';
|
||||
import { SystemMessage } from './SystemMessage';
|
||||
|
||||
export type Props = {
|
||||
i18n: LocalizerType;
|
||||
};
|
||||
|
||||
export const ResetSessionNotification = ({ i18n }: Props): JSX.Element => (
|
||||
<div className="SystemMessage">{i18n('sessionEnded')}</div>
|
||||
<SystemMessage contents={i18n('sessionEnded')} icon="session-refresh" />
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue