fix: Update the icon for low priority (#6978)

This commit is contained in:
Pranav Raj S
2023-04-24 13:52:14 -07:00
committed by GitHub
parent 92fa9c4fdc
commit c071f66cdd
5 changed files with 74 additions and 82 deletions

View File

@@ -1,5 +1,11 @@
<template>
<base-icon :size="size" :icon="icon" :type="type" :icons="icons" />
<base-icon
:size="size"
:icon="icon"
:type="type"
:icons="icons"
:view-box="viewBox"
/>
</template>
<script>
import BaseIcon from './Icon';
@@ -23,6 +29,10 @@ export default {
type: String,
default: 'outline',
},
viewBox: {
type: String,
default: '0 0 24 24',
},
},
data() {
return { icons };