import Image from 'next/image'; import React, { memo } from 'react'; interface IProps { width?: number; height?: number; src: string; label: string; className?: string; } const OptionIcon: React.FC = ({ width, height, src, label }) => { return {label; }; export default memo(OptionIcon);