mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 12:37:56 +00:00
54 lines
899 B
Vue
54 lines
899 B
Vue
<template>
|
|
<svg
|
|
:width="size"
|
|
:height="size"
|
|
fill="none"
|
|
:viewBox="viewBox"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
v-for="source in pathSource"
|
|
:key="source"
|
|
:d="source"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: {
|
|
icon: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
icons: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
size: {
|
|
type: [String, Number],
|
|
default: '20',
|
|
},
|
|
type: {
|
|
type: String,
|
|
default: 'outline',
|
|
},
|
|
viewBox: {
|
|
type: String,
|
|
default: '0 0 24 24',
|
|
},
|
|
},
|
|
|
|
computed: {
|
|
pathSource() {
|
|
// To support icons with multiple paths
|
|
const path = this.icons[`${this.icon}-${this.type}`];
|
|
if (path.constructor === Array) {
|
|
return path;
|
|
}
|
|
return [path];
|
|
},
|
|
},
|
|
};
|
|
</script>
|