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.
32 lines
908 B
32 lines
908 B
import React from "react"; |
|
import Button from "../../ButtonDesign/Button"; |
|
|
|
const OfferSection = () => { |
|
return ( |
|
<div className="w-full flex flex-row items-center justify-between"> |
|
<button |
|
className="bg-red-400 text-xs py-2 pr-2 pl-5" |
|
style={{ clipPath: "polygon(24% 0, 100% 0%, 100% 99%, 0% 100%)" }} |
|
> |
|
mahdi |
|
</button> |
|
<Button |
|
text={"پیشنهاد سردبیر"} |
|
className={ |
|
"w-[120px] px-2 py-2 bg-surface text-primaryDark text-xs font-bold rounded relative transform" |
|
} |
|
/> |
|
{/* divider */} |
|
<hr className="w-full mr-4 border border-surfaceBorder" /> |
|
{/* left Button */} |
|
<Button |
|
text={"مشاهده بیشتر"} |
|
className={ |
|
"w-[120px] p-2 bg-surface text-primaryDark text-xs font-bold rounded" |
|
} |
|
/> |
|
</div> |
|
); |
|
}; |
|
|
|
export default OfferSection;
|
|
|