Files
vault/ui/lib/core/addon/components/icon.hbs
2024-01-11 15:19:16 -06:00

12 lines
323 B
Handlebars

{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: BUSL-1.1
~}}
{{#if this.isFlightIcon}}
<FlightIcon @name={{@name}} @size={{this.size}} @stretched={{@stretched}} ...attributes />
{{else}}
<span class="hs-icon {{this.hsIconClass}}" aria-hidden="true" ...attributes>
{{svg-jar @name}}
</span>
{{/if}}