forked from github/plane
5eb7740833
* fix: upgrading next package and removed unused deps * chore: unused variable removed * chore: next image icon fix * chore: unused component removed * chore: next image icon fix * chore: replace use-debounce with lodash debounce * chore: unused component removed * resolved: fixed issue with next link component * fix: updates in next config * fix: updating types pages --------- Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so>
11 lines
355 B
TypeScript
11 lines
355 B
TypeScript
import React from "react";
|
|
import Image from "next/image";
|
|
// image
|
|
import DefaultFileIcon from "public/attachment/default-icon.png";
|
|
// type
|
|
import type { ImageIconPros } from "./types";
|
|
|
|
export const DefaultIcon: React.FC<ImageIconPros> = ({ width, height }) => (
|
|
<Image src={DefaultFileIcon} height={height} width={width} alt="DefaultFileIcon" />
|
|
);
|