diff --git a/README.md b/README.md
index 99511d3..d11a590 100644
--- a/README.md
+++ b/README.md
@@ -243,6 +243,7 @@ Object.assign(defaultTheme, {
|inlineToolbarControls|`string[]`|optional|List of controls to display in the inline toolbar. Available values are: "bold", "italic", "underline", "strikethrough", "highlight", "link", "clear", and user defined inline controls. If not provided and `inlineToolbar` is `true` the following inline styles will be displayed: bold, italic, underline and clear.|
|keyCommands|`TKeyCommand[]`|optional|Defines an array of `TKeyCommand` objects for adding key bindings to the editor.|
|draftEditorProps|`TDraftEditorProps`|optional|Defines an object containing specific `draft-js` `Editor` properties.|
+|maxLength|`number`|optional|Sets the maximum characters count that can be input into the editor.|
diff --git a/examples/main.tsx b/examples/main.tsx
index b3b7f56..311878a 100644
--- a/examples/main.tsx
+++ b/examples/main.tsx
@@ -13,6 +13,7 @@ import LoadHTML from './load-html'
import ResetValue from './reset-value'
import AtomicCustomBlock from './atomic-custom-block'
import KeyBindings from './key-bindings'
+import MaxLength from './max-length'
const App = () => {
@@ -38,6 +39,7 @@ const App = () => {
+