/** * 配置性界面的空状态组件(无引导按钮) * 仅提示用户当前没有配置数据 */ import React from "react"; import type { LucideIcon } from "lucide-react"; interface EmptyStateSimpleProps { /** 标题 */ title: string; /** 描述文字 */ description: string; /** 图标组件 */ Icon: LucideIcon; /** 自定义样式(可选) */ className?: string; } export const EmptyStateSimple: React.FC = ({ title, description, Icon, className = "", }) => { return (

{title}

{description}

); };