mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
31 lines
713 B
TypeScript
31 lines
713 B
TypeScript
|
import React from 'react';
|
||
|
import { EditOutlined, EllipsisOutlined, SettingOutlined } from '@ant-design/icons';
|
||
|
import { Avatar, Card } from 'antd';
|
||
|
|
||
|
const { Meta } = Card;
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Card
|
||
|
style={{ width: 300 }}
|
||
|
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>
|
||
|
);
|
||
|
|
||
|
export default App;
|