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) => void; }; const StyledClickable = styled.div` display: flex; overflow: hidden; white-space: nowrap; a { color: inherit; } `; export const RawLink = ({ className, href, children, onClick, }: RawLinkProps) => (
{children}
);