我想将标签作为超链接

I want to act the label as hyperlink

我正在使用 antDesignreactjs

 <Form.Item name="City" label="City">
            <Input  maxLength="100" size="small" disabled={true} />
        </Form.Item>

我想要标签 City 作为超级 link。

https://ant.design/components/anchor/

使用<Link>怎么可能?

这样做

<Form.Item name="City" label={<a href="Link_here">City</a>}>
    <Input  maxLength="100" size="small" disabled={true} />
</Form.Item>