Fix missing icons and subtitle in mobile boost/quote menu (#36038)

This commit is contained in:
diondiondion 2025-09-08 10:50:46 +02:00 committed by GitHub
commit a5fbe2f5c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 498 additions and 470 deletions

View file

@ -1,7 +1,13 @@
import type { KeyboardEvent, MouseEvent, TouchEvent } from 'react';
import type { IconProp } from '../components/icon';
interface BaseMenuItem {
text: string;
description?: string;
icon?: IconProp;
highlighted?: boolean;
disabled?: boolean;
dangerous?: boolean;
}