Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Matheus <matheus_benini@hotmail.com> Co-authored-by: bosiraphael <raphael.bosi@gmail.com>
36 lines
689 B
TypeScript
36 lines
689 B
TypeScript
import * as React from 'react';
|
|
import { Link as ReactLink } from 'react-router-dom';
|
|
import styled from '@emotion/styled';
|
|
|
|
type RawLinkProps = {
|
|
className?: string;
|
|
href: string;
|
|
children?: React.ReactNode;
|
|
onClick?: (event: React.MouseEvent<HTMLElement>) => void;
|
|
};
|
|
|
|
const StyledClickable = styled.div`
|
|
display: flex;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
|
|
a {
|
|
color: inherit;
|
|
}
|
|
`;
|
|
|
|
export const RawLink = ({
|
|
className,
|
|
href,
|
|
children,
|
|
onClick,
|
|
}: RawLinkProps) => (
|
|
<div>
|
|
<StyledClickable className={className}>
|
|
<ReactLink target="_blank" onClick={onClick} to={href}>
|
|
{children}
|
|
</ReactLink>
|
|
</StyledClickable>
|
|
</div>
|
|
);
|