import type StepInput from "./StepInput.js"; import Icon from "./Icon.js"; import Input from "./Input.js"; import less from "@ui5/webcomponents-icons/dist/less.js"; import add from "@ui5/webcomponents-icons/dist/add.js"; export default function StepInputTemplate(this: StepInput) { return (
{/* Decrement Icon */} {!this.readonly &&
} {/* INPUT */} {this.valueStateMessage.length > 0 && } {/* Increment Icon */} {!this.readonly &&
}
); }