mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 08:59:40 +08:00
14417f1614
* feat(theme): adjust font-size in compact mode With compact theme mode, we adjust default font-size from 14px to 12px. Closes #23015 * patch: update docs min font-size * patch * patch * patch * patch * patch * patch
35 lines
603 B
Markdown
35 lines
603 B
Markdown
---
|
|
order: 1
|
|
title:
|
|
zh-CN: 四种样式
|
|
en-US: More types
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
共有四种样式 `success`、`info`、`warning`、`error`。
|
|
|
|
## en-US
|
|
|
|
There are 4 types of Alert: `success`, `info`, `warning`, `error`.
|
|
|
|
```tsx
|
|
import { Alert } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<div>
|
|
<Alert message="Success Text" type="success" />
|
|
<Alert message="Info Text" type="info" />
|
|
<Alert message="Warning Text" type="warning" />
|
|
<Alert message="Error Text" type="error" />
|
|
</div>,
|
|
mountNode,
|
|
);
|
|
```
|
|
|
|
<style>
|
|
[data-theme="compact"] .code-box-demo .ant-alert {
|
|
margin-bottom: 8px;
|
|
}
|
|
</style>
|