mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
10 lines
305 B
TypeScript
10 lines
305 B
TypeScript
|
import React from "react";
|
||
|
import Image from "next/image";
|
||
|
|
||
|
import type { Props } from "./types";
|
||
|
import PDFFileIcon from "public/attachment/pdf-icon.png";
|
||
|
|
||
|
export const PdfIcon: React.FC<Props> = ({ width , height }) => (
|
||
|
<Image src={PDFFileIcon} height={height} width={width} alt="PDFFileIcon" />
|
||
|
);
|