-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest type.js
More file actions
41 lines (39 loc) · 1.06 KB
/
request type.js
File metadata and controls
41 lines (39 loc) · 1.06 KB
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
import React from 'react';
import Logo from '../../global_ui/logo'
import './RequestType.css'
function RequestType() {
return(
<div>
<nav className='navbar'>
<div className='back_div'>
<button className='btn_back'>
<i1 className='fas fa-chevron-left'></i1>
</button>
</div>
<span className='nav_head'>
Choose Request Type
</span>
</nav>
<div className='container'>
<Logo />
<button className='btn2'>
<span className='box'>
<i2 className='fas fa-plus'></i2>
</span>
<span className='btn2_text'>
General Request
</span>
</button>
<button className='btn2'>
<span className='icon2'>
<i3 className='fas fa-truck-pickup'></i3>
</span>
<span className='btn2_text'>
Pick Up / Drop
</span>
</button>
</div>
</div>
)
}
export default RequestType;