import React from 'react' interface RedditIconProps { width?: number | string height?: number | string className?: string variant?: 'original' | 'grayscale' | 'white' } export function RedditIcon({ width = 24, height = 24, className = "text-current", variant = 'grayscale' }: RedditIconProps) { // Color scheme based on variant let colors; switch (variant) { case 'original': colors = { background: '#FF4500' // White features }; break; case 'white': colors = { background: '#FFFFFF' // Black features }; break; default: // grayscale colors = { background: '#888888' // Light gray features }; break; } return ( ) }