mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-21 08:58:19 +01:00
17 lines
397 B
TypeScript
17 lines
397 B
TypeScript
// Copyright 2019 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as React from 'react';
|
|
import * as styles from './PageHeader.scss';
|
|
import { H1 } from './Typography';
|
|
|
|
export type Props = {
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
export const PageHeader = React.memo(function PageHeaderInner({
|
|
children,
|
|
}: Props) {
|
|
return <H1 className={styles.base}>{children}</H1>;
|
|
});
|