

// image
import PDFFileIcon from "@/app/assets/attachment/pdf-icon.png?url";
// type
import type { ImageIconPros } from "../types";

export function PdfIcon({ width, height }: ImageIconPros) {
  return (
    <img src={PDFFileIcon} width={width} height={height} alt="PDFFileIcon" />
  );
}
