source: CookCraft-FrontEnd/CookCraft-FrontEnd-master/cookcraft-app/src/components/ProfileComponents/OrderCard.jsx@ f08e256

Last change on this file since f08e256 was d7b7f00, checked in by Gorazd Biskoski <gorazdbiskoskii@…>, 4 weeks ago

Add project

  • Property mode set to 100644
File size: 1002 bytes
Line 
1import styles from '../../css/ProfileCss/orderHistory.module.css';
2import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
3import { faThumbsDown as Dislike, faThumbsUp as Like } from "@fortawesome/free-solid-svg-icons";
4
5const 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
27export default OrderCard;
Note: See TracBrowser for help on using the repository browser.