10 lines
186 B
JavaScript
10 lines
186 B
JavaScript
|
|
import { DeleteOutlined } from "@ant-design/icons";
|
||
|
|
|
||
|
|
const DeleteIcon = props => (
|
||
|
|
<DeleteOutlined {...props} />
|
||
|
|
);
|
||
|
|
|
||
|
|
DeleteIcon.displayName = "DeleteIcon";
|
||
|
|
|
||
|
|
export default DeleteIcon;
|