import createGenericInlineTool from './tool'
export const ItalicInlineTool = createGenericInlineTool({
sanitize: {
em: {},
},
shortcut: 'CMD+I',
tagName: 'EM',
toolboxIcon:
// icon editor-js uses
'',
})
export const StrongInlineTool = createGenericInlineTool({
sanitize: {
strong: {},
},
shortcut: 'CMD+B',
tagName: 'STRONG',
toolboxIcon:
'',
})
export const UnderlineInlineTool = createGenericInlineTool({
sanitize: {
u: {},
},
tagName: 'U',
// icon taken from https://github.com/mui-org/material-ui/blob/4fba0dafd30f608937efa32883d151ba01fc9681/packages/material-ui-icons/src/FormatUnderlined.js
toolboxIcon:
'',
})