import { Badge, Section } from "../../../components"; import { t } from "../../../i18n"; import { colors } from "../../../theme/colors"; import { Box, Text } from "../../../ui"; export interface HelpShortcutEntry { id: string; badges: string[]; description: string; category: string; } export function ShortcutRow({ badges, description, }: { badges: string[]; description: string; }) { return ( {badges.map((badge, index) => )} {t(description)} ); } export function ShortcutGroup({ title, entries }: { title: string; entries: HelpShortcutEntry[] }) { return (
{entries.map((entry) => ( ))}
); }