If you want to use your own icons instead of the default ones, provide an iconMap prop to RichToolbar. The iconMap should be an object where keys are action constants (from the actions object) and values are either an image source or a function that returns a component.
If you provide a function, it receives an object containing: { selected, disabled, tintColor, iconSize, iconGap }.
const customIconMap = {
[actions.setBold]: ({ selected, tintColor, iconSize }) => (
<MyCustomBoldIcon selected={selected} color={tintColor} size={iconSize} />
),
[actions.setItalic]: require('./my-italic-icon.png'),
};
<RichToolbar
getEditor={() => this.editorRef}
iconMap={customIconMap}
/>