2018-01-29 05:07:31 +00:00
|
|
|
<a rel="nofollow noopener"
|
|
|
|
target="_blank"
|
2018-04-30 01:42:03 +00:00
|
|
|
:href
|
2018-04-30 00:45:03 +00:00
|
|
|
aria-label={{ariaLabel || ''}}
|
2018-02-10 22:35:21 +00:00
|
|
|
class="{{className || ''}} {{showIcon ? 'external-link-with-icon' : ''}} {{normalIconColor ? 'normal-icon-color' : ''}}">
|
2018-03-07 07:27:36 +00:00
|
|
|
<slot></slot>{{#if showIcon}}
|
2018-03-16 15:42:10 +00:00
|
|
|
<svg class="external-link-svg">
|
2018-01-29 05:07:31 +00:00
|
|
|
<use xlink:href="#fa-external-link" />
|
|
|
|
</svg>
|
2018-03-07 07:27:36 +00:00
|
|
|
{{/if}}</a>
|
2018-01-29 03:01:51 +00:00
|
|
|
<style>
|
2018-01-29 05:07:31 +00:00
|
|
|
.external-link-with-icon {
|
2018-01-29 03:01:51 +00:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2018-03-16 15:42:10 +00:00
|
|
|
.external-link-with-icon .external-link-svg {
|
2018-01-29 03:01:51 +00:00
|
|
|
margin-left: 4px;
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
fill: var(--deemphasized-text-color);
|
|
|
|
}
|
2018-03-16 15:42:10 +00:00
|
|
|
.external-link-with-icon.normal-icon-color .external-link-svg {
|
2018-02-10 22:35:21 +00:00
|
|
|
fill: var(--body-text-color);
|
|
|
|
}
|
2018-04-30 05:13:41 +00:00
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data: () => ({
|
|
|
|
normalIconColor: false
|
|
|
|
})
|
|
|
|
}
|
|
|
|
</script>
|