2023-03-13 18:08:43 +00:00
|
|
|
import React from "react";
|
|
|
|
import Image from "next/image";
|
2023-11-29 15:02:10 +00:00
|
|
|
// image
|
2023-03-13 18:08:43 +00:00
|
|
|
import CMDIcon from "public/mac-command.svg";
|
2023-11-29 15:02:10 +00:00
|
|
|
// type
|
|
|
|
import type { ImageIconPros } from "./types";
|
2023-03-13 18:08:43 +00:00
|
|
|
|
2023-11-29 15:02:10 +00:00
|
|
|
export const MacCommandIcon: React.FC<ImageIconPros> = ({ width = 14, height = 14 }) => (
|
2023-03-13 18:08:43 +00:00
|
|
|
<Image src={CMDIcon} height={height} width={width} alt="CMDIcon" />
|
|
|
|
);
|
|
|
|
|
|
|
|
export default MacCommandIcon;
|