Files
mehraein-front/app/home/components/CategorySection.tsx
T
hamid zarghami a3626a5684 category section
2026-07-18 11:10:34 +03:30

24 lines
766 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { ArrowLeft, ArrowRight } from "iconsax-reactjs";
const CategorySection = () => {
return (
<div className="mt-[120px] px-[120px]">
<div className="flex justify-between items-center">
<div className="font-bold text-2xl">دسته بندی های محصولات</div>
<div className="flex gap-2">
<div className="size-8 bg-primary rounded-full flex justify-center items-center">
<ArrowRight size={20} color="white" />
</div>
<div className="size-8 bg-primary rounded-full flex justify-center items-center">
<ArrowLeft size={20} color="white" />
</div>
</div>
</div>
<div className="mt-12"></div>
</div>
);
};
export default CategorySection;