import { ControllerBindingLabel } from '../../../components/ControllerIcons' import type { ControllerIconStyle } from '../../../input' import { IWT2_CLASS_METADATA } from '../content/classes' import type { Iwt2EntityId, Iwt2PartyEntityState } from '../sim' import { ArenaBar } from './ArenaBars' export function PartyFrames({ party, selectedPartyId, targetBindings, controllerIconStyle, onTarget, }: { party: Iwt2PartyEntityState[] selectedPartyId: Iwt2EntityId targetBindings?: Array controllerIconStyle?: ControllerIconStyle onTarget: (id: Iwt2EntityId) => void }) { return ( ) }