`;
const speedSetpoint =
this.speedSetpoint !== undefined
? svg`${setpointSvg(
350,
this.speedSetpoint,
speedSetpointAtZero,
{
fill: cSpeed.setPointColor,
stroke: 'var(--border-silhouette-color)',
},
{
inCommand: this.state === InstrumentState.inCommand,
singleSided: true,
narrow: false,
}
)}`
: nothing;
return html`
`;
}
static override styles = unsafeCSS(compentStyle);
}
declare global {
interface HTMLElementTagNameMap {
'obc-main-engine': ObcMainEngine;
}
}