mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
54d3a738f6
* Update links from https://joeschmoe.io to https://joesch.moe * updated snapshots
31 lines
708 B
TypeScript
31 lines
708 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://joesch.moe/api/v1/random" />}
|
|
title="Card title"
|
|
description="This is the description"
|
|
/>
|
|
</Card>
|
|
);
|
|
|
|
export default App;
|