ant-design/components/empty/demo/customize.tsx
二货爱吃白萝卜 9f2fb20358
chore: unique Empty text color (#49408)
* chore: unique color

* test: update snapshot
2024-06-14 11:58:52 +08:00

19 lines
433 B
TypeScript

import React from 'react';
import { Button, Empty, Typography } from 'antd';
const App: React.FC = () => (
<Empty
image="https://gw.alipayobjects.com/zos/antfincdn/ZHrcdLPrvN/empty.svg"
imageStyle={{ height: 60 }}
description={
<Typography.Text>
Customize <a href="#API">Description</a>
</Typography.Text>
}
>
<Button type="primary">Create Now</Button>
</Empty>
);
export default App;