| 1 | import { MousePointer2 } from 'lucide-react' |
| 2 | import { useT } from '@renderer/i18n' |
| 3 | import { InspectorSection } from '../../element-inspector/InspectorSection' |
| 4 | import { WorkbenchPanelShell } from './WorkbenchPanelShell' |
| 5 | |
| 6 | export function EmptyEditWorkbenchPanel(): React.JSX.Element { |
| 7 | const t = useT() |
| 8 | return ( |
| 9 | <WorkbenchPanelShell title={t('sessionDetail.elementInspector')}> |
| 10 | <InspectorSection |
| 11 | title={t('sessionDetail.noElementSelected')} |
| 12 | icon={<MousePointer2 className="h-3.5 w-3.5 text-[#7a875f]" />} |
| 13 | > |
| 14 | <div className="h-16 rounded-[0.95rem] border border-dashed border-[#d7cbb7]/72 bg-[#f7f1e7]/54" /> |
| 15 | </InspectorSection> |
| 16 | </WorkbenchPanelShell> |
| 17 | ) |
| 18 | } |
| 19 |