mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-29 16:14:43 +00:00
Breadcrumbs
This commit is contained in:
25
components/Breadcrumbs.tsx
Normal file
25
components/Breadcrumbs.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
interface BreadcrumbsProps {
|
||||
breadcrumbPath?: string[];
|
||||
}
|
||||
|
||||
export default function Breadcrumbs({ breadcrumbPath = ['Home'] }: BreadcrumbsProps) {
|
||||
return(
|
||||
<div className="w-full">
|
||||
<div className="breadcrumbs text-sm">
|
||||
<ul className="pl-4 pt-4">
|
||||
{breadcrumbPath.map((item, index) => (
|
||||
<li key={index}>
|
||||
{index < breadcrumbPath.length - 1 ? (
|
||||
<a>{item}</a>
|
||||
) : (
|
||||
item
|
||||
)}
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
<div className="divider"></div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user