1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-21 13:47:39 +02:00
unleash.unleash/frontend/src/component/common/TooltipLink/TooltipLink.tsx
Gastón Fournier abe160eb7d
feat: Unleash v7 ESM migration (#9877)
We're migrating to ESM, which will allow us to import the latest
versions of our dependencies.

Co-Authored-By: Christopher Kolstad <chriswk@getunleash.io>
2025-05-14 09:47:12 +02:00

39 lines
1.1 KiB
TypeScript

import type { ReactNode } from 'react';
import { Link, type LinkProps, styled } from '@mui/material';
import {
HtmlTooltip,
type IHtmlTooltipProps,
} from '../HtmlTooltip/HtmlTooltip.tsx';
const StyledLink = styled(Link, {
shouldForwardProp: (prop) => prop !== 'highlighted',
})<{ highlighted?: boolean }>(({ theme, highlighted }) => ({
backgroundColor: highlighted ? theme.palette.highlight : 'transparent',
color: theme.palette.text.primary,
textDecorationColor: theme.palette.text.disabled,
textDecorationStyle: 'dashed',
textUnderlineOffset: theme.spacing(0.5),
whiteSpace: 'nowrap',
}));
interface ITooltipLinkProps extends LinkProps {
tooltip: ReactNode;
highlighted?: boolean;
tooltipProps?: Omit<IHtmlTooltipProps, 'title' | 'children'>;
children: ReactNode;
}
export const TooltipLink = ({
tooltip,
highlighted,
tooltipProps,
children,
...props
}: ITooltipLinkProps) => (
<HtmlTooltip title={tooltip} {...tooltipProps} arrow>
<StyledLink tabIndex={0} highlighted={highlighted} {...props}>
{children}
</StyledLink>
</HtmlTooltip>
);