import { useAFFiNEI18N } from '@affine/i18n/hooks'; import { ArrowLeftSmallIcon } from '@blocksuite/icons'; import { Button, type ButtonProps } from '@toeverything/components/button'; import { type FC } from 'react'; export const BackButton: FC = props => { const t = useAFFiNEI18N(); return ( ); };