UNPKG

contenido

Version:

Contenido is a library with a set of tools to help you create your own rich text editor on top of draft-js without thinking about how to handle things.

21 lines (16 loc) 404 B
// Core import { RichUtils } from '../../core'; // Custom Types import type { State, StateHandler } from '../../types'; const toggleUnderline = ( state: State, stateHandler: StateHandler, customUnderlinekey?: string ) => { const updatedStyle = RichUtils.toggleInlineStyle( state, customUnderlinekey || 'UNDERLINE' ); stateHandler(updatedStyle); }; export default toggleUnderline;