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 = ({ width = 14, height = 14 }) => ( CMDIcon ); export default MacCommandIcon;