ant-design/components/card/demo/meta.md

48 lines
980 B
Markdown
Raw Normal View History

---
order: 9
title:
zh-CN: 支持更多内容配置
en-US: Support more content configuration
---
## zh-CN
一种支持封面、头像、标题和描述信息的卡片。
## en-US
A Card that supports `cover`, `avatar`, `title` and `description`.
```tsx
import { EditOutlined, EllipsisOutlined, SettingOutlined } from '@ant-design/icons';
2022-05-21 22:14:15 +08:00
import { Avatar, Card } from 'antd';
import React from 'react';
2018-06-27 15:55:04 +08:00
const { Meta } = Card;
const App: React.FC = () => (
<Card
style={{ width: 300 }}
2019-05-07 14:57:32 +08:00
cover={
<img
alt="example"
src="https://gw.alipayobjects.com/zos/rmsportal/JiqGstEfoWAOHiTxclqi.png"
/>
}
actions={[
<SettingOutlined key="setting" />,
<EditOutlined key="edit" />,
<EllipsisOutlined key="ellipsis" />,
]}
>
<Meta
avatar={<Avatar src="https://joeschmoe.io/api/v1/random" />}
title="Card title"
description="This is the description"
/>
</Card>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```