import Component from '@glimmer/component'; /** A Switch component |Property|Type|description| |---|---|---| |color|string|| |disabled|boolean|| |value|boolean|| @class EmtSwitch @public */ interface EmtSwitchArgs { color: string disabled: boolean value: boolean } export default class EmtSwitch extends Component { constructor(owner: unknown, args: EmtSwitchArgs) { super(owner, args); } }