I would like to be able to pass props other than view to custom toolbar components. Here is an example of a custom title tip I would like to add to the button. Any idea how I would do something like this?
https://stackblitz.com/edit/react-nmy4tg?file=app/backgroundColorTool.jsx
I figured it out.
const customClearFormatting = (props) => { return ( <ClearAll {...props} toolTip={messages.editor.cleanFormatting} /> ) };