Leon4gr45's picture
Upload folder using huggingface_hub (part 11)
f2e9a59 verified
Raw
History Blame Contribute Delete
551 Bytes
'use client';
import { FC } from 'react';
import { ImageProps } from 'next/image';
type SafeImageProps = Omit<ImageProps, 'src'> & {
src: string;
};
const SafeImage: FC<SafeImageProps> = ({
src,
alt,
width,
height,
className,
style,
...rest
}) => {
return (
<img
src={src}
alt={alt?.toString() || ''}
width={typeof width === 'number' ? width : undefined}
height={typeof height === 'number' ? height : undefined}
className={className}
style={style}
/>
);
};
export default SafeImage;