## Usage

You can use the HTML <img> tag to display images in your React application. Simply add the <img> tag to your JSX code, and specify the source (src) of the image as the value of the "src" attribute. For example:

```jsx
import ImageWrapper from "./image";

<ImageWrapper />;
```

```sh
import React from "react";
import "./image.scss";
import { Image } from "antd";

/**
 * Use `Image` for Image you need to keep.
 */
export default function ImageWrapper({  src, className, width = 150 }) {
  return (
    <div className={`image-box ${className}`}>
      <Image width={width} src={src} />
    </div>
  );
}
```
