import App from '../../../base' export default App.directive('toggleSwitch', () => ({ restrict: 'E', scope: { description: '@', labelFalse: '@', labelTrue: '@', ngModel: '=', }, template: `\
{{description}}
\ `, }))