You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
515 B
18 lines
515 B
import React from "react"; |
|
|
|
const StatisticsCard = () => { |
|
return ( |
|
<div className=" rtl flex flex-col gap-y-2 w-[152px] bg-white h-[152px] items-center py-2 px-4 bor rounded-xl"> |
|
<div> |
|
<img src="../../public/images/alarm-clock.png" /> |
|
</div> |
|
<div className="text-gray-900 text-lg"> |
|
<p>زمان تقریبی</p> |
|
</div> |
|
<div className="text-gray-900 text-lg text-right "> |
|
<p>20دقیقه</p> |
|
</div> |
|
</div> |
|
); |
|
}; |
|
export default StatisticsCard;
|
|
|