zy-react-library/components/Icon/DeleteIcon/index.js

10 lines
186 B
JavaScript
Raw Normal View History

2025-10-31 16:47:09 +08:00
import { DeleteOutlined } from "@ant-design/icons";
const DeleteIcon = props => (
<DeleteOutlined {...props} />
);
DeleteIcon.displayName = "DeleteIcon";
export default DeleteIcon;