You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/components/Link.tsx

21 lines
462 B

import { PropsWithChildren } from 'react';
import { UISref, UISrefProps } from '@uirouter/react';
interface Props {
title?: string;
}
export function Link({
title = '',
children,
...props
}: PropsWithChildren<Props> & UISrefProps) {
return (
// eslint-disable-next-line react/jsx-props-no-spreading
<UISref {...props}>
{/* eslint-disable-next-line jsx-a11y/anchor-is-valid */}
<a title={title}>{children}</a>
</UISref>
);
}