refactor(core): auth ui (#10101)

close AF-2202 AF-2203
This commit is contained in:
forehalo
2025-02-12 07:39:09 +00:00
parent 573af16aa4
commit 9dcce43360
24 changed files with 458 additions and 304 deletions

View File

@@ -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>
);
};