You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
728 B
30 lines
728 B
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://xsgames.co/randomusers/avatar.php?g=pixel" />}
|
|
title="Card title"
|
|
description="This is the description"
|
|
/>
|
|
</Card>
|
|
);
|
|
|
|
export default App;
|
|
|