refactor(miniapp): simplify dashboard layout and controls

This commit is contained in:
2026-03-11 20:57:44 +04:00
parent e36d3b5d66
commit 523b5144d8
7 changed files with 148 additions and 267 deletions

View File

@@ -65,3 +65,12 @@ export function GlobeIcon(props: IconProps) {
</svg>
)
}
export function XIcon(props: IconProps) {
return (
<svg {...iconProps(props)}>
<path d="m6 6 12 12" />
<path d="M18 6 6 18" />
</svg>
)
}