forked from github/plane
10 lines
314 B
TypeScript
10 lines
314 B
TypeScript
|
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" />
|
||
|
);
|