2021-12-01 05:03:18 +00:00
|
|
|
<template>
|
2021-12-29 12:31:49 +00:00
|
|
|
<base-icon :size="size" :icon="icon" :type="type" :icons="icons" />
|
2021-12-01 05:03:18 +00:00
|
|
|
</template>
|
|
|
|
<script>
|
2021-12-29 12:31:49 +00:00
|
|
|
import BaseIcon from './Icon';
|
2021-12-01 05:03:18 +00:00
|
|
|
import icons from './dashboard-icons.json';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'FluentIcon',
|
2021-12-29 12:31:49 +00:00
|
|
|
components: {
|
|
|
|
BaseIcon,
|
|
|
|
},
|
2021-12-01 05:03:18 +00:00
|
|
|
props: {
|
|
|
|
icon: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
size: {
|
|
|
|
type: [String, Number],
|
|
|
|
default: '20',
|
|
|
|
},
|
|
|
|
type: {
|
|
|
|
type: String,
|
|
|
|
default: 'outline',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return { icons };
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|