Created
July 16, 2024 09:15
-
-
Save MyFRA/29c96c0399bbeed53038cdeb4e76ed45 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { BreadcrumbType } from "@/types/BreadcrumbType"; | |
import Link from "next/link"; | |
export default function BreadcrumbComponent({ breadcrumbs }: { breadcrumbs: Array<BreadcrumbType> }) { | |
return ( | |
<div className="mb-4 lg:mb-7"> | |
<div className="flex items-center gap-1.5"> | |
{breadcrumbs.map((breadcrumb, index) => ( | |
<div className="flex" key={index}> | |
{breadcrumb.link ? ( | |
<div className="flex items-center" key={index}> | |
<div> | |
<Link href={breadcrumb.link} className="text-green-primary font-cabin text-sm lg:text-base"> | |
{breadcrumb.text} | |
</Link> | |
</div> | |
<div> | |
<span className="flex items-center"> | |
| |
<svg | |
xmlns="http://www.w3.org/2000/svg" | |
width="16" | |
height="16" | |
viewBox="0 0 24 24" | |
fill="none" | |
stroke="currentColor" | |
strokeWidth="2" | |
strokeLinecap="round" | |
strokeLinejoin="round" | |
className="icon icon-tabler icons-tabler-outline icon-tabler-chevron-right" | |
> | |
<path stroke="none" d="M0 0h24v24H0z" fill="none" /> | |
<path d="M9 6l6 6l-6 6" /> | |
</svg> | |
</span> | |
</div> | |
</div> | |
) : ( | |
<div key={index} className="flex items-start"> | |
<span className="text-green-primary font-cabin text-sm lg:text-base font-semibold inline-block overflow-hidden w-[20ch] whitespace-nowrap text-ellipsis"> | |
{breadcrumb.text} | |
</span> | |
</div> | |
)} | |
</div> | |
))} | |
</div> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment