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

10 lines
313 B
TypeScript
Raw Normal View History

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