plane/web/components/icons/cmd-icon.tsx

13 lines
364 B
TypeScript
Raw Normal View History

import React from "react";
import Image from "next/image";
// image
import CMDIcon from "public/mac-command.svg";
// type
import type { ImageIconPros } from "./types";
export const MacCommandIcon: React.FC<ImageIconPros> = ({ width = 14, height = 14 }) => (
<Image src={CMDIcon} height={height} width={width} alt="CMDIcon" />
);
export default MacCommandIcon;