import { useI18n } from '@affine/i18n'; import { ArrowLeftSmallIcon } from '@blocksuite/icons/rc'; import { cssVar } from '@toeverything/theme'; import type { FC } from 'react'; import type { ButtonProps } from '../../ui/button'; import { Button } from '../../ui/button'; export const BackButton: FC = props => { const t = useI18n(); return ( ); };