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

10 lines
308 B
TypeScript
Raw Normal View History

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