## Expected Behavior Do not send a missing `this.args.onClicked` warning if component is used as `button[type=submit]`. ## Actual Behavior A warning is sent for a missing `this.args.onClicked` function even if it's not necessary. https://github.com/ember-learn/ember-styleguide/blob/0eb219ff4c82b3629f73d30dd710cb33d33935e6/addon/components/es-button.js#L13-L18 ## Steps to Reproduce Add an `es-button` component with `@type=submit` and no `@onClicked`. ```hbs <EsButton @type="submit" @label="Search" /> ``` ## Screenshot 