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

11 lines
345 B
TypeScript
Raw Normal View History

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