'use client';
import { forwardRef, ImgHTMLAttributes, useId } from 'react';
export interface GlitchImageProps extends ImgHTMLAttributes {}
export const GlitchImage = forwardRef(
({ src, alt = 'Image', className = '', ...props }, ref) => {
const id = useId();
return (
<>
>
);
}
);
GlitchImage.displayName = 'GlitchImage';
export default GlitchImage;