ds4/templates/sheets/shared/components/form-field-icon-button.hbs

17 lines
490 B
Handlebars
Raw Normal View History

{{!--
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>