UNPKG

fulan-editor

Version:

An open source react editor based on draft-Js and ant design, good support HTML, markdown and Draft Raw format.

19 lines (18 loc) 502 B
import React, {Component} from 'react'; import {Popconfirm,Icon} from 'antd'; class RemoveStyleControls extends Component { constructor(props) { super(props); } render() { let className = 'RichEditor-styleButton'; return ( <div className="RichEditor-controls"> <span className={className} onClick= {this.props.onToggle}> <Icon key="empty_style" type="editor_select_block" /> </span> </div> ) } } module.exports = RemoveStyleControls;