import React from 'react'; import Avatar from 'boring-avatars'; import type { Protobuf } from '@meshtastic/meshtasticjs'; type DefaultDivProps = JSX.IntrinsicElements['div']; export interface NodeProps { node: Protobuf.NodeInfo; } export const Node = ({ node, ...props }: NodeProps & DefaultDivProps): JSX.Element => { return (