UNPKG

530 BJavaScriptView Raw
1/**
2 * Copyright (c) Facebook, Inc. and its affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 *
7 * @format
8 *
9 * @emails oncall+draft_js
10 */
11'use strict';
12
13module.exports = {
14 BOLD: {
15 fontWeight: 'bold'
16 },
17 CODE: {
18 fontFamily: 'monospace',
19 wordWrap: 'break-word'
20 },
21 ITALIC: {
22 fontStyle: 'italic'
23 },
24 STRIKETHROUGH: {
25 textDecoration: 'line-through'
26 },
27 UNDERLINE: {
28 textDecoration: 'underline'
29 }
30};
\No newline at end of file