forked from webex/react-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BasicComponents.js
204 lines (198 loc) · 6.33 KB
/
BasicComponents.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
import React from 'react';
import Button from '@webex/react-component-button';
import Icon, {ICONS} from '@webex/react-component-icon';
function BasicComponents() {
function onClick() {
// eslint-disable-next-line no-alert
window.alert('onClick');
}
const buttonContainerStyle = {
width: '40px',
height: '40px',
border: '1px solid rgba(0, 0, 0, 0.06)',
borderRadius: '50%'
};
return (
<div>
<h3>Buttons</h3>
<div style={{display: 'flex', flexDirection: 'row'}}>
<div style={buttonContainerStyle}>
<Button accessibilityLabel="Main Menu" iconColor="black" iconType={ICONS.ICON_TYPE_WAFFLE} onClick={onClick} />
</div>
<div style={buttonContainerStyle}>
<Button
iconColor="purple"
iconType={ICONS.ICON_TYPE_DELETE}
onClick={onClick}
title="delete"
/>
</div>
</div>
<h3>Icons</h3>
<div style={{display: 'flex', flexDirection: 'row'}}>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Add Icon"
type={ICONS.ICON_TYPE_ADD}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Contact Icon"
type={ICONS.ICON_TYPE_CONTACT}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Delete Icon"
type={ICONS.ICON_TYPE_DELETE}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="DND Icon"
type={ICONS.ICON_TYPE_DND}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Document Icon"
type={ICONS.ICON_TYPE_DOCUMENT}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Download"
type={ICONS.ICON_TYPE_DOWNLOAD}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Exit Icon"
type={ICONS.ICON_TYPE_EXIT}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="External User Icon"
type={ICONS.ICON_TYPE_EXTERNAL_USER}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="External User Outline Icon"
type={ICONS.ICON_TYPE_EXTERNAL_USER_OUTLINE}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Files Icon"
type={ICONS.ICON_TYPE_FILES}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Flagged Icon"
type={ICONS.ICON_TYPE_FLAGGED}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Flagged Outline Icon"
type={ICONS.ICON_TYPE_FLAGGED_OUTLINE}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Invite Icon"
type={ICONS.ICON_TYPE_INVITE}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Message Icon"
type={ICONS.ICON_TYPE_MESSAGE}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Message Outline Icon"
type={ICONS.ICON_TYPE_MESSAGE_OUTLINE}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="More Icon"
type={ICONS.ICON_TYPE_MORE}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Mute Icon"
type={ICONS.ICON_TYPE_MUTE_OUTLINE}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Participant List Icon"
type={ICONS.ICON_TYPE_PARTICIPANT_LIST}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="PTO Icon"
type={ICONS.ICON_TYPE_PTO}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Right Arrow Icon"
type={ICONS.ICON_TYPE_RIGHT_ARROW}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Video Cross Outline Icon"
type={ICONS.ICON_TYPE_VIDEO_CROSS_OUTLINE}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Video Outline Icon"
type={ICONS.ICON_TYPE_VIDEO_OUTLINE}
/>
</div>
<div style={{height: '25px', width: '25px', backgroundColor: 'blueviolet'}}>
<Icon
color="white"
title="Waffle Icon"
type={ICONS.ICON_TYPE_WAFFLE}
/>
</div>
</div>
</div>
);
}
export default BasicComponents;