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