import { Chip, IconButton, Stack } from "@mui/material"; import SettingsIcon from "@mui/icons-material/Settings"; type NodeHeaderProps = { type: string; onSettings?: () => void; }; export default function NodeHeader({ type, onSettings }: NodeHeaderProps) { return ( ); }