forked from slab/quill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icons.js
74 lines (73 loc) · 2.47 KB
/
icons.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import alignLeftIcon from '../assets/icons/align-left.svg';
import alignCenterIcon from '../assets/icons/align-center.svg';
import alignRightIcon from '../assets/icons/align-right.svg';
import alignJustifyIcon from '../assets/icons/align-justify.svg';
import backgroundIcon from '../assets/icons/background.svg';
import blockquoteIcon from '../assets/icons/blockquote.svg';
import boldIcon from '../assets/icons/bold.svg';
import cleanIcon from '../assets/icons/clean.svg';
import codeIcon from '../assets/icons/code.svg';
import colorIcon from '../assets/icons/color.svg';
import directionLeftToRightIcon from '../assets/icons/direction-ltr.svg';
import directionRightToLeftIcon from '../assets/icons/direction-rtl.svg';
import formulaIcon from '../assets/icons/formula.svg';
import headerIcon from '../assets/icons/header.svg';
import header2Icon from '../assets/icons/header-2.svg';
import italicIcon from '../assets/icons/italic.svg';
import imageIcon from '../assets/icons/image.svg';
import indentIcon from '../assets/icons/indent.svg';
import outdentIcon from '../assets/icons/outdent.svg';
import linkIcon from '../assets/icons/link.svg';
import listBulletIcon from '../assets/icons/list-bullet.svg';
import listCheckIcon from '../assets/icons/list-check.svg';
import listOrderedIcon from '../assets/icons/list-ordered.svg';
import subscriptIcon from '../assets/icons/subscript.svg';
import superscriptIcon from '../assets/icons/superscript.svg';
import strikeIcon from '../assets/icons/strike.svg';
import tableIcon from '../assets/icons/table.svg';
import underlineIcon from '../assets/icons/underline.svg';
import videoIcon from '../assets/icons/video.svg';
export default {
align: {
'': alignLeftIcon,
center: alignCenterIcon,
right: alignRightIcon,
justify: alignJustifyIcon,
},
background: backgroundIcon,
blockquote: blockquoteIcon,
bold: boldIcon,
clean: cleanIcon,
code: codeIcon,
'code-block': codeIcon,
color: colorIcon,
direction: {
'': directionLeftToRightIcon,
rtl: directionRightToLeftIcon,
},
formula: formulaIcon,
header: {
'1': headerIcon,
'2': header2Icon,
},
italic: italicIcon,
image: imageIcon,
indent: {
'+1': indentIcon,
'-1': outdentIcon,
},
link: linkIcon,
list: {
bullet: listBulletIcon,
check: listCheckIcon,
ordered: listOrderedIcon,
},
script: {
sub: subscriptIcon,
super: superscriptIcon,
},
strike: strikeIcon,
table: tableIcon,
underline: underlineIcon,
video: videoIcon,
};