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

10 lines
186 B
JavaScript
Raw Normal View History

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