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.
54 lines
2.2 KiB
54 lines
2.2 KiB
import React from "react"; |
|
import { connect } from "react-redux"; |
|
import { Link } from "react-router-dom"; |
|
|
|
const Trophy = ({}) => { |
|
const [dropdown, setDropdown] = React.useState(true); |
|
return ( |
|
<div |
|
className={`w-full flex py-5 px-3 justify-between items-center flex-row bg-yellow4 bg-opacity-40`} |
|
> |
|
<div className={`flex flex-row items-center`}> |
|
<svg xmlns="http://www.w3.org/2000/svg" width={23.862} height={23.862}> |
|
<g fill="none" stroke="#d6d020" data-name="vuesax/linear/cup"> |
|
<path |
|
d="M12.08 16.405v2.088" |
|
strokeLinecap="round" |
|
strokeLinejoin="round" |
|
strokeWidth="1.5" |
|
/> |
|
<path |
|
data-name="Vector" |
|
strokeWidth="1.5" |
|
d="M7.109 21.874h9.942v-.995a1.994 1.994 0 0 0-1.988-1.988H9.097a1.994 1.994 0 0 0-1.988 1.988v.994Z" |
|
/> |
|
<path |
|
data-name="Vector" |
|
d="M6.115 21.873h11.931M11.931 15.907a6.955 6.955 0 0 1-6.96-6.959V5.965a3.976 3.976 0 0 1 3.977-3.977h5.965a3.976 3.976 0 0 1 3.977 3.977v2.983a6.955 6.955 0 0 1-6.959 6.959Z" |
|
strokeLinecap="round" |
|
strokeLinejoin="round" |
|
strokeWidth="1.5" |
|
/> |
|
<path |
|
data-name="Vector" |
|
d="M5.438 11.583a4.831 4.831 0 0 1-1.919-1.193 5.3 5.3 0 0 1-1.491-3.579 2.461 2.461 0 0 1 2.486-2.486h.646a3.734 3.734 0 0 0-.3 1.491v2.983a7.007 7.007 0 0 0 .578 2.784ZM18.423 11.583a4.831 4.831 0 0 0 1.919-1.193 5.3 5.3 0 0 0 1.491-3.579 2.461 2.461 0 0 0-2.485-2.486h-.647a3.734 3.734 0 0 1 .3 1.491v2.983a7.007 7.007 0 0 1-.578 2.784Z" |
|
strokeLinecap="round" |
|
strokeLinejoin="round" |
|
strokeWidth="1.5" |
|
/> |
|
</g> |
|
</svg> |
|
<strong className="text-sm mr-2.5 text-green4F"> |
|
{`{window.t("امتیاز شما")}` + " " + 14560} |
|
</strong> |
|
</div> |
|
<Link to="#" className="text-sm text-green4F"> |
|
{window.t("مشاهده جوایز")} |
|
</Link> |
|
</div> |
|
); |
|
}; |
|
|
|
const mapStateToProps = (state) => ({}); |
|
|
|
export default connect(mapStateToProps)(Trophy);
|
|
|