forked from github/plane
10 lines
324 B
TypeScript
10 lines
324 B
TypeScript
|
import React from "react";
|
||
|
import Image from "next/image";
|
||
|
|
||
|
import type { Props } from "./types";
|
||
|
import DefaultFileIcon from "public/attachment/default-icon.png";
|
||
|
|
||
|
export const DefaultIcon: React.FC<Props> = ({ width, height }) => (
|
||
|
<Image src={DefaultFileIcon} height={height} width={width} alt="DefaultFileIcon" />
|
||
|
);
|