import Image from 'next/image'; interface IProps { width?: number; height?: number; src: string; label: string; className?: string; } function DBIcon({ src, label, width, height, className }: IProps) { return ( {label ); } export default DBIcon;