1 import { c } from 'ttag';
3 import { Icon, ToolbarButton } from '@proton/components';
5 import { useCreateFileModal } from '../../../modals/CreateFileModal';
7 const CreateNewFileButton = () => {
8 const [createFileModal, showCreateFileModal] = useCreateFileModal();
13 icon={<Icon name="file" alt={c('Action').t`Create new text file`} />}
14 title={c('Action').t`Create new text file`}
15 onClick={() => showCreateFileModal({})}
16 data-testid="toolbar-create-file"
23 export default CreateNewFileButton;