File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,6 @@ import theme from './theme.ts';
19
19
20
20
// import {HTMLelements,getSize} from "../utils/htmlElements.util";
21
21
22
- // test
23
-
24
22
class HTMLComponentPanel extends Component {
25
23
state = {
26
24
HtmlComponentName : '' ,
@@ -61,52 +59,57 @@ class HTMLComponentPanel extends Component {
61
59
</ Grid >
62
60
< Grid item xs = { 4 } >
63
61
< IconButton
62
+ className = "htmlicons"
64
63
aria-label = "Form"
65
64
onClick = { ( ) => {
66
65
this . handleCreateHTMLChild ( 'Form' ) ;
67
66
} }
68
67
>
69
- < FormIcon />
68
+ < FormIcon style = { { color : '#e0e0e0' } } />
70
69
</ IconButton >
71
70
</ Grid >
72
71
< Grid item xs = { 4 } >
73
72
< IconButton
73
+ className = "htmlicons"
74
74
aria-label = "Button"
75
75
onClick = { ( ) => {
76
76
this . handleCreateHTMLChild ( 'Button' ) ;
77
77
} }
78
78
>
79
- < ButtonIcon />
79
+ < ButtonIcon style = { { color : '#e0e0e0' } } />
80
80
</ IconButton >
81
81
</ Grid >
82
82
< Grid item xs = { 4 } >
83
83
< IconButton
84
+ className = "htmlicons"
84
85
aria-label = "Link"
85
86
onClick = { ( ) => {
86
87
this . handleCreateHTMLChild ( 'Link' ) ;
87
88
} }
88
89
>
89
- < LinkIcon />
90
+ < LinkIcon style = { { color : '#e0e0e0' } } />
90
91
</ IconButton >
91
92
</ Grid >
92
93
< Grid item xs = { 4 } >
93
94
< IconButton
95
+ className = "htmlicons"
94
96
aria-label = "List"
95
97
onClick = { ( ) => {
96
98
this . handleCreateHTMLChild ( 'List' ) ;
97
99
} }
98
100
>
99
- < ListIcon />
101
+ < ListIcon style = { { color : '#e0e0e0' } } />
100
102
</ IconButton >
101
103
</ Grid >
102
104
< Grid item xs = { 4 } >
103
105
< IconButton
106
+ className = "htmlicons"
104
107
aria-label = "Paragraph"
105
108
onClick = { ( ) => {
106
109
this . handleCreateHTMLChild ( 'Paragraph' ) ;
107
110
} }
108
111
>
109
- < ParagraphIcon />
112
+ < ParagraphIcon style = { { color : '#e0e0e0' } } />
110
113
</ IconButton >
111
114
</ Grid >
112
115
</ Grid >
You can’t perform that action at this time.
0 commit comments