export function LoadingSpinner({ text = 'Loading...' }: { text?: string }) { return (
{text}
); }