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

10 lines
306 B
TypeScript
Raw Normal View History

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