Last change
on this file was d7b7f00, checked in by Gorazd Biskoski <gorazdbiskoskii@…>, 4 weeks ago |
Add project
|
-
Property mode
set to
100644
|
File size:
1002 bytes
|
Line | |
---|
1 | import styles from '../../css/ProfileCss/orderHistory.module.css';
|
---|
2 | import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
---|
3 | import { faThumbsDown as Dislike, faThumbsUp as Like } from "@fortawesome/free-solid-svg-icons";
|
---|
4 |
|
---|
5 | const OrderCard = () => {
|
---|
6 | return (
|
---|
7 | <div className={styles.orderCard}>
|
---|
8 | <div className={styles.orderDescription}>
|
---|
9 | <p>
|
---|
10 | <strong>Order id:</strong> a7FS53l
|
---|
11 | <strong>Location:</strong> Bul. Ilinden 103/6
|
---|
12 | <strong>Delivery Person:</strong> Kristijan Petkov
|
---|
13 | </p>
|
---|
14 | </div>
|
---|
15 | <div className={styles.orderReviewButtons}>
|
---|
16 | <span>
|
---|
17 | <FontAwesomeIcon icon={Like} className={styles.orderBtn} />
|
---|
18 | </span>
|
---|
19 | <span>
|
---|
20 | <FontAwesomeIcon icon={Dislike} className={styles.orderBtn} />
|
---|
21 | </span>
|
---|
22 | </div>
|
---|
23 | </div>
|
---|
24 | );
|
---|
25 | }
|
---|
26 |
|
---|
27 | export default OrderCard;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.