uiwjs/react-markdown-editor

How to remove toolbar at all

lofti198 opened this issue · 3 comments

Thank you for this awesome component! Please tell, how to remove toolbar at all?
image

I tried passing empty array, however right icons (switch to fullscreen and preview) still remain.
<MarkdownEditor value={markdown} onChange={(value, viewUpdate) => setMarkdown(value)} toolbars={[]} />

I found workaroung with: display none, however maybe there is some parameter for that?
.md-editor-toolbar { display: none; }

Thank you for fast help! It works awesome!