import { IconAlertTriangle, IconRefresh } from '@douyinfe/semi-icons';
export function PageLoading({ label = '正在加载车辆数据' }: { label?: string }) {
return
{label}
;
}
export function InlineError({ message, onRetry }: { message: string; onRetry?: () => void }) {
return (
{message}
{onRetry ? : null}
);
}
export function EmptyState({ title = '暂无符合条件的车辆' }: { title?: string }) {
return {title}
;
}