'use client'; interface LoadingIconProps { size?: number; color?: string; thickness?: number; className?: string; } export default function LoadingIcon({ size = 24, color = 'var(--accent)', thickness = 2, className = '', }: LoadingIconProps) { return (