2019-01-22 21:51:42 -06:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2019-2024 New Vector Ltd.
|
2019-01-22 21:51:42 -06:00
|
|
|
|
2024-09-09 14:57:16 +01:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2019-01-22 21:51:42 -06:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import React from "react";
|
2021-10-22 17:23:32 -05:00
|
|
|
|
2019-01-22 21:51:42 -06:00
|
|
|
export default class AuthHeaderLogo extends React.PureComponent {
|
2021-07-15 15:22:02 +02:00
|
|
|
public render(): React.ReactNode {
|
2022-08-01 08:31:14 +01:00
|
|
|
return <aside className="mx_AuthHeaderLogo">Matrix</aside>;
|
2019-01-22 21:51:42 -06:00
|
|
|
}
|
|
|
|
|
}
|