import React, { FC, ComponentProps } from 'react' import { Typography, TypographyProps } from 'antd' import styled from 'styled-components' type LinkProps = ComponentProps & { inherit?: boolean } const StyledLink = styled(Typography.Link)<{ $inherit?: boolean }>` ${({ $inherit }) => $inherit ? 'font-size: inherit;line-height:inherit;' : ''} ` export const Link: FC = ({ inherit, ...props }) => { return }