feat(core): adjust web clipper page (#10779)

This commit is contained in:
EYHN
2025-03-13 10:59:50 +08:00
committed by GitHub
parent 5ed8541cb1
commit 86729fb447
5 changed files with 92 additions and 13 deletions
@@ -1,13 +1,16 @@
import { Logo1Icon } from '@blocksuite/icons/rc';
import clsx from 'clsx';
import type { FC } from 'react';
import { authHeaderWrapper } from './share.css';
export const AuthHeader: FC<{
title: string;
subTitle?: string;
}> = ({ title, subTitle }) => {
className?: string;
}> = ({ title, subTitle, className }) => {
return (
<div className={authHeaderWrapper}>
<div className={clsx(authHeaderWrapper, className)}>
<p>
<Logo1Icon className="logo" />
{title}