import React from 'react'; interface PixelIconProps { src: string; alt?: string; className?: string; style?: React.CSSProperties; } export function PixelIcon({ src, alt = '', className = '', style }: PixelIconProps) { return ( {alt} ); }