mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 21:05:19 +00:00
@@ -0,0 +1,18 @@
|
||||
import { Logo1Icon } from '@blocksuite/icons/rc';
|
||||
import type { FC } from 'react';
|
||||
|
||||
import { authHeaderWrapper } from './share.css';
|
||||
export const AuthHeader: FC<{
|
||||
title: string;
|
||||
subTitle?: string;
|
||||
}> = ({ title, subTitle }) => {
|
||||
return (
|
||||
<div className={authHeaderWrapper}>
|
||||
<p>
|
||||
<Logo1Icon className="logo" />
|
||||
{title}
|
||||
</p>
|
||||
<p>{subTitle}</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user