feat: delimiter color

This commit is contained in:
2025-05-31 18:40:12 +02:00
parent 9d19b470bc
commit 321f4087e1

View File

@ -25,7 +25,7 @@ const Breadcrumbs: FC<IBreadcrumbsProps> = ({ items, className }) => {
) : (
<p>{item.label}</p>
)}
{index + 1 < items.length && <p>/</p>}
{index + 1 < items.length && <p className="text-gray-500">/</p>}
</>
))}
</div>