import React from 'react'; import { Loader2 } from 'lucide-react'; interface LoadingSpinnerProps { size?: 'small' | 'medium' | 'large'; text?: string; } /** * 加载动画组件 */ export const LoadingSpinner: React.FC = ({ size = 'medium', text }) => { const sizeMap = { small: 16, medium: 24, large: 32 }; return (
{text && {text}}
); };