/** @jsxRuntime classic */ /** @jsx jsx */ import { jsx } from '../emotion' import { useTheme } from '../theme' import { forwardRefWithAs } from '../utils' export const Link = forwardRefWithAs<'a', unknown>(({ as: Tag = 'a', ...props }, ref) => { const { typography, colors } = useTheme() const styles = { color: colors.linkColor, cursor: 'pointer', fontWeight: typography.fontWeight.medium, textDecoration: 'none', ':hover, :focus': { color: colors.linkHoverColor, textDecoration: 'underline', }, } return })