2023-04-06 09:37:11 +00:00
|
|
|
import React from "react";
|
|
|
|
import Image from "next/image";
|
2023-11-29 15:02:10 +00:00
|
|
|
// image
|
2023-04-06 09:37:11 +00:00
|
|
|
import ImgFileIcon from "public/attachment/img-icon.png";
|
2023-11-29 15:02:10 +00:00
|
|
|
// type
|
|
|
|
import type { ImageIconPros } from "./types";
|
2023-04-06 09:37:11 +00:00
|
|
|
|
2023-11-29 15:02:10 +00:00
|
|
|
export const ImgIcon: React.FC<ImageIconPros> = ({ width, height }) => (
|
2023-04-06 09:37:11 +00:00
|
|
|
<Image src={ImgFileIcon} height={height} width={width} alt="ImgFileIcon" />
|
|
|
|
);
|