mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-21 08:58:19 +01:00
Sticker Creator
This commit is contained in:
committed by
Scott Nonnenberg
parent
2df1ba6e61
commit
11d47a8eb9
11
sticker-creator/elements/PageHeader.tsx
Normal file
11
sticker-creator/elements/PageHeader.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
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(({ children }: Props) => (
|
||||
<H1 className={styles.base}>{children}</H1>
|
||||
));
|
||||
Reference in New Issue
Block a user