--- 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'; import { Avatar, Card } from 'antd'; import React from 'react'; const { Meta } = Card; const App: React.FC = () => ( } actions={[ , , , ]} > } title="Card title" description="This is the description" /> ); export default App; ```