import { Icon } from './icons'; export default function LoadingSpinner({ size = 24, text = '加载中...' }) { return (
{text && {text}}
); }