From 5c36cb299ca81b6d6338aa02c4efb785d4f56f99 Mon Sep 17 00:00:00 2001 From: Sabrina Bongiovanni Date: Wed, 25 Oct 2023 15:55:16 +0200 Subject: [PATCH] fix: icon component for TextSizeButton in RichTextEditor --- src/config/RichTextEditor/ToolbarButtons/TextSizeButton.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/RichTextEditor/ToolbarButtons/TextSizeButton.jsx b/src/config/RichTextEditor/ToolbarButtons/TextSizeButton.jsx index e949faafd..f50ce6717 100644 --- a/src/config/RichTextEditor/ToolbarButtons/TextSizeButton.jsx +++ b/src/config/RichTextEditor/ToolbarButtons/TextSizeButton.jsx @@ -59,7 +59,7 @@ const TextSizeButton = (props) => { const createInlineStyleButton = props.draftJsCreateInlineStyleButton.default; return createInlineStyleButton({ style: 'TEXT_LARGER', - children: ButtonIcon, + children: , }); }; export default TextSizeButton;