@draft-js-plugins/buttons

Buttons for DraftJS

Usage no npm install needed!

<script type="module">
  import draftJsPluginsButtons from 'https://cdn.skypack.dev/@draft-js-plugins/buttons';
</script>

README

DraftJS Buttons

Important: Include after the Editor

For the toolbar to work correctly, you must include the <Toolbar> component after the editor component:

<Editor .../>
<Toolbar />

Using the Subscript and Superscript buttons requires a custom style map:

<Editor
    customStyleMap={{
      SUBSCRIPT: { fontSize: '0.6em', verticalAlign: 'sub' },
      SUPERSCRIPT: { fontSize: '0.6em', verticalAlign: 'super' }
    }}

/>
<Toolbar />