2020-12-16 16:54:41 +00:00
|
|
|
<!--
|
2022-02-21 21:53:49 +00:00
|
|
|
- Copyright 2022 James Lyne
|
2020-12-16 16:54:41 +00:00
|
|
|
-
|
2021-07-25 14:12:40 +00:00
|
|
|
- Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
- you may not use this file except in compliance with the License.
|
|
|
|
- You may obtain a copy of the License at
|
2020-12-16 16:54:41 +00:00
|
|
|
-
|
2021-07-25 14:12:40 +00:00
|
|
|
- http://www.apache.org/licenses/LICENSE-2.0
|
2020-12-16 16:54:41 +00:00
|
|
|
-
|
2021-07-25 14:12:40 +00:00
|
|
|
- Unless required by applicable law or agreed to in writing, software
|
|
|
|
- distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
- See the License for the specific language governing permissions and
|
|
|
|
- limitations under the License.
|
2020-12-16 16:54:41 +00:00
|
|
|
-->
|
|
|
|
|
2020-12-12 21:35:55 +00:00
|
|
|
<template>
|
2021-09-08 14:20:04 +00:00
|
|
|
<svg :class="className" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
|
|
<title v-if="title">{{ title }}</title>
|
|
|
|
<use :xlink:href="iconPath"/>
|
|
|
|
</svg>
|
2020-12-12 21:35:55 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-09-08 14:20:04 +00:00
|
|
|
import {computed} from "vue";
|
|
|
|
|
2020-12-12 21:35:55 +00:00
|
|
|
export default {
|
2021-09-08 14:20:04 +00:00
|
|
|
name: 'svg-icon',
|
|
|
|
|
|
|
|
props: {
|
|
|
|
name: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
|
|
|
|
title: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
setup(props) {
|
|
|
|
const iconPath = computed(() => `#icon--${props.name}`),
|
|
|
|
className = computed(() => `svg-icon svg-icon--${props.name}`);
|
|
|
|
|
|
|
|
return {
|
|
|
|
iconPath,
|
|
|
|
className
|
|
|
|
}
|
|
|
|
}
|
2020-12-12 21:35:55 +00:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
2021-09-08 14:20:04 +00:00
|
|
|
.svg-icon {
|
|
|
|
pointer-events: none;
|
|
|
|
fill: currentColor;
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
|
|
|
}
|
2020-12-12 21:35:55 +00:00
|
|
|
</style>
|