mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
45 lines
1.1 KiB
Markdown
45 lines
1.1 KiB
Markdown
---
|
|
order: 2
|
|
title:
|
|
zh-CN: 文本与超链接组件
|
|
en-US: Text and Link Component
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
内置不同样式的文本以及超链接组件。
|
|
|
|
## en-US
|
|
|
|
Provides multiple types of text and link.
|
|
|
|
```tsx
|
|
import { Space, Typography } from 'antd';
|
|
import React from 'react';
|
|
|
|
const { Text, Link } = Typography;
|
|
|
|
const App: React.FC = () => (
|
|
<Space direction="vertical">
|
|
<Text>Ant Design (default)</Text>
|
|
<Text type="secondary">Ant Design (secondary)</Text>
|
|
<Text type="success">Ant Design (success)</Text>
|
|
<Text type="warning">Ant Design (warning)</Text>
|
|
<Text type="danger">Ant Design (danger)</Text>
|
|
<Text disabled>Ant Design (disabled)</Text>
|
|
<Text mark>Ant Design (mark)</Text>
|
|
<Text code>Ant Design (code)</Text>
|
|
<Text keyboard>Ant Design (keyboard)</Text>
|
|
<Text underline>Ant Design (underline)</Text>
|
|
<Text delete>Ant Design (delete)</Text>
|
|
<Text strong>Ant Design (strong)</Text>
|
|
<Text italic>Ant Design (italic)</Text>
|
|
<Link href="https://ant.design" target="_blank">
|
|
Ant Design (Link)
|
|
</Link>
|
|
</Space>
|
|
);
|
|
|
|
export default App;
|
|
```
|