1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-28 14:16:41 +07:00

#58 fixed upload buttons appearance

This commit is contained in:
Fedor Katurov 2021-03-29 09:37:13 +07:00
parent 97958a358b
commit d9af895558
3 changed files with 17 additions and 3 deletions

View file

@ -6,7 +6,12 @@ import { IEditorComponentProps } from '~/redux/node/types';
type IProps = IEditorComponentProps & {};
const EditorImageUploadButton: FC<IProps> = () => (
<EditorUploadButton accept="image/*" icon="image" type={UPLOAD_TYPES.IMAGE} />
<EditorUploadButton
accept="image/*"
icon="image"
type={UPLOAD_TYPES.IMAGE}
label="Добавить фоточек"
/>
);
export { EditorImageUploadButton };