import Image, { ImageLoaderProps, ImageProps } from 'next/image'; import * as React from 'react'; import clsxm from '@/lib/clsxm'; type NextImageProps = ( | { width: string | number; height: string | number } | { layout: 'fill'; width?: string | number; height?: string | number } ) & ImageProps; export default function NextImage({ className, src, width, height, layout, alt, ...rest }: NextImageProps) { return (