Manage Button
The Manage Button is for management or administration entry points such as settings or admin panels, styled as a secondary button with a settings (gear) icon. It extends the Base Button.
Overview
Examples
Usage
Use the button through its directive selector on any element, or through its component selector. The directive form is preferred for new code; the component form remains supported.
<button manageButton (click)="onManage()" mat-raised-button>Manage</button>API
A secondary button for management / settings entry points, extending the base button. All other base inputs and outputs are inherited.
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
label | string | 'Manage' | Button label text. |
icon | string | 'settings' | Material icon name rendered before the label. |
classes | string | 'mr-3 btn btn-secondary secondary-button' | CSS classes applied to the button. |
See the Buttons introduction for the shared inputs, outputs and base-button API.
