mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
ac4bb1c1b4
* refactor: remove unused icon files * refactor: attachment icons folder structure
11 lines
336 B
TypeScript
11 lines
336 B
TypeScript
import React from "react";
|
|
import Image from "next/image";
|
|
// image
|
|
import PngFileIcon from "public/attachment/png-icon.png";
|
|
// type
|
|
import type { ImageIconPros } from "../types";
|
|
|
|
export const PngIcon: React.FC<ImageIconPros> = ({ width, height }) => (
|
|
<Image src={PngFileIcon} height={height} width={width} alt="PngFileIcon" />
|
|
);
|