import type React from 'react'; import { IconButton } from '@meshtastic/components'; export interface ListItemProps { selected: boolean; selectedIcon: JSX.Element; actions?: JSX.Element; status: JSX.Element; onClick?: () => void; children: React.ReactNode; } export const ListItem = ({ selected, selectedIcon, actions, status, onClick, children, }: ListItemProps): JSX.Element => { return (