import { Logo1Icon } from '@blocksuite/icons/rc'; import type { FC } from 'react'; import { modalHeaderWrapper } from './share.css'; export const ModalHeader: FC<{ title: string; subTitle: string; }> = ({ title, subTitle }) => { return (

{title}

{subTitle}

); };