Basic button with configurable options for action, size, type, and disabling.
<rl-button action="" size="" type="" ng-disabled=""> ... </rl-button>
action
, size
, type
, and ng-disabled
.
See buttons for detail on the base options.
A button with an action, size, type, and disabling.
<rl-button action="button.click()" size="lg" type="danger" ng-disabled="true"> ... </rl-button>
Output:
<button type="button" class="btn btn-lg btn-danger" ng-click="button.click()" disabled> ... </button>