16 lines
490 B
Handlebars
16 lines
490 B
Handlebars
{{!--
|
|
SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
|
|
SPDX-License-Identifier: MIT
|
|
--}}
|
|
|
|
{{!
|
|
!-- Render a form-field icon button.
|
|
!-- @param class: A class to identify the button by
|
|
!-- @param title: The title to use for the button (will be localized)
|
|
!-- @param faClasses: The Fontawesom classes to use for the icon
|
|
}}
|
|
|
|
<button class="ds4-form-field-icon-button {{class}}" type="button" title="{{localize title}}">
|
|
<i class="{{faClasses}} ds4-form-field-icon-button__icon"></i>
|
|
</button>
|