Antd V4 Icon Updates
This commit is contained in:
@@ -1,4 +1,9 @@
|
||||
import { Input, Table, Button, Icon, notification } from "antd";
|
||||
import { Input, Table, Button, notification } from "antd";
|
||||
import {
|
||||
PlusCircleFilled,
|
||||
DeleteFilled,
|
||||
SyncOutlined
|
||||
} from "@ant-design/icons";
|
||||
import React, { useState } from "react";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { alphaSort } from "../../utils/sorters";
|
||||
@@ -138,7 +143,7 @@ export default function JobsAvailableSupplementComponent({
|
||||
});
|
||||
}}
|
||||
>
|
||||
<Icon type="delete" />
|
||||
<DeleteFilled />
|
||||
</Button>
|
||||
<Button
|
||||
onClick={() => {
|
||||
@@ -146,7 +151,7 @@ export default function JobsAvailableSupplementComponent({
|
||||
setModalVisible(true);
|
||||
}}
|
||||
>
|
||||
<Icon type="plus" />
|
||||
<PlusCircleFilled />
|
||||
</Button>
|
||||
</span>
|
||||
)
|
||||
@@ -184,7 +189,7 @@ export default function JobsAvailableSupplementComponent({
|
||||
refetch();
|
||||
}}
|
||||
>
|
||||
<Icon type="sync" />
|
||||
<SyncOutlined />
|
||||
</Button>
|
||||
<Button
|
||||
onClick={() => {
|
||||
|
||||
Reference in New Issue
Block a user