plane/web/components/icons/img-file-icon.tsx

11 lines
335 B
TypeScript
Raw Normal View History

import React from "react";
import Image from "next/image";
// image
import ImgFileIcon from "public/attachment/img-icon.png";
// type
import type { ImageIconPros } from "./types";
export const ImgIcon: React.FC<ImageIconPros> = ({ width, height }) => (
<Image src={ImgFileIcon} height={height} width={width} alt="ImgFileIcon" />
);