import Icon from "./Icon.js"; import { isDesktop, isSafari } from "@ui5/webcomponents-base/dist/Device.js"; import type Switch from "./Switch.js"; import acceptIcon from "@ui5/webcomponents-icons/dist/accept.js"; import declineIcon from "@ui5/webcomponents-icons/dist/decline.js"; export default function SwitchTemplate(this: Switch) { return (
{this.graphical ? <> : <> {this.hasNoLabel ? <> : <> {this._textOn} {this._textOff} } } {this.readonly && {this.ariaDescribedByText}}
); }