import React from 'react'; import { Box } from './primitives/Box'; interface LoadingSpinnerProps { size?: number; color?: string; className?: string; } export function LoadingSpinner({ size = 8, color = '#3b82f6', className = '' }: LoadingSpinnerProps) { return ( ); }