import { Link as SolitoLink, LinkProps as SolitoLinkProps } from 'solito/link' import { SizableText, TextProps } from 'tamagui' export type LinkProps = Omit & TextProps & { target?: string rel?: string title?: string } export const Link = ({ href = '', replace, scroll, shallow, prefetch, locale, children, ...props }: LinkProps) => { const linkProps = { href, replace, scroll, shallow, prefetch, locale } return ( {children} ) }