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.
14 lines
418 B
14 lines
418 B
import React from "react"; |
|
const Coin = () => { |
|
return ( |
|
<div> |
|
<div className="mt-2 text-center bg-[white] h-32 w-28 m-auto rounded-2xl"> |
|
<img src="public/images/coin.png" loading="lazy" className="m-auto"></img> |
|
<p className="pt-5">امتیاز</p> |
|
<p className="pt5">409.5</p> |
|
</div> |
|
</div> |
|
); |
|
} |
|
|
|
export default Coin; |