forked from github/plane
39 lines
1.5 KiB
TypeScript
39 lines
1.5 KiB
TypeScript
import Link from "next/link";
|
|
import { Tooltip } from "@plane/ui";
|
|
import { usePlatformOS } from "@/hooks/use-platform-os";
|
|
|
|
type Props = {
|
|
label?: string;
|
|
href?: string;
|
|
icon?: React.ReactNode | undefined;
|
|
};
|
|
|
|
export const BreadcrumbLink: React.FC<Props> = (props) => {
|
|
const { href, label, icon } = props;
|
|
const { isMobile } = usePlatformOS();
|
|
return (
|
|
<Tooltip tooltipContent={label} position="bottom" isMobile={isMobile}>
|
|
<li className="flex items-center space-x-2" tabIndex={-1}>
|
|
<div className="flex flex-wrap items-center gap-2.5">
|
|
{href ? (
|
|
<Link
|
|
className="flex items-center gap-1 text-sm font-medium text-custom-text-300 hover:text-custom-text-100"
|
|
href={href}
|
|
>
|
|
{icon && (
|
|
<div className="flex h-5 w-5 items-center justify-center overflow-hidden !text-[1rem]">{icon}</div>
|
|
)}
|
|
<div className="relative line-clamp-1 block max-w-[150px] overflow-hidden truncate">{label}</div>
|
|
</Link>
|
|
) : (
|
|
<div className="flex cursor-default items-center gap-1 text-sm font-medium text-custom-text-100">
|
|
{icon && <div className="flex h-5 w-5 items-center justify-center overflow-hidden">{icon}</div>}
|
|
<div className="relative line-clamp-1 block max-w-[150px] overflow-hidden truncate">{label}</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</li>
|
|
</Tooltip>
|
|
);
|
|
};
|