mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-10 07:25:35 +00:00
feat: create new dashboard (layout, navbar, list of links)
This commit is contained in:
26
inertia/components/common/external_link_styled.tsx
Normal file
26
inertia/components/common/external_link_styled.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
import { Anchor } from '@mantine/core';
|
||||
import { AnchorHTMLAttributes, CSSProperties, ReactNode } from 'react';
|
||||
|
||||
export function ExternalLinkStyled({
|
||||
children,
|
||||
title,
|
||||
...props
|
||||
}: AnchorHTMLAttributes<HTMLAnchorElement> & {
|
||||
children: ReactNode;
|
||||
style?: CSSProperties;
|
||||
title?: string;
|
||||
className?: string;
|
||||
}) {
|
||||
return (
|
||||
<Anchor<'a'>
|
||||
component="a"
|
||||
underline="never"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
title={title}
|
||||
{...props}
|
||||
>
|
||||
{children}
|
||||
</Anchor>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user