import { TableCell, TableRow } from "@mui/material"; export function DeviceInfoProperty(p: { icon?: React.ReactElement; label: string; value: string; color?: string; }): React.ReactElement { return ( {p.label} {p.value} ); }