import React from 'react'; import { Link as ReactLink } from 'react-router-dom'; import styled from '@emotion/styled'; type PrimaryLinkProps = { children: React.ReactNode; href: string; onClick?: () => void; fullWidth?: boolean; }; const StyledClickable = styled.div` display: flex; a { color: ${({ theme }) => theme.font.color.tertiary}; font-size: ${({ theme }) => theme.font.size.sm}; overflow: hidden; text-decoration: underline; text-overflow: ellipsis; } `; export const PrimaryLink = ({ href, children, onClick }: PrimaryLinkProps) => ( {children} );