feat: svg icons

This commit is contained in:
liyasthomas
2021-08-28 05:47:33 +05:30
parent e397e3fb6f
commit 476bfbaef0
149 changed files with 476 additions and 392 deletions

View File

@@ -27,12 +27,12 @@
<ButtonSecondary
v-tippy="{ theme: 'tooltip' }"
:title="$t('action.more')"
icon="more_vert"
svg="more-vertical"
/>
</template>
<SmartItem
v-if="team.myRole === 'OWNER'"
icon="create"
svg="edit"
:label="$t('action.edit')"
@click.native="
$emit('edit-team')
@@ -41,7 +41,7 @@
/>
<SmartItem
v-if="team.myRole === 'OWNER'"
icon="delete"
svg="trash-2"
color="red"
:label="$t('action.delete')"
@click.native="
@@ -51,7 +51,7 @@
/>
<SmartItem
v-if="!(team.myRole === 'OWNER' && team.ownersCount == 1)"
icon="remove"
svg="trash"
:label="$t('team.exit')"
@click.native="
exitTeam()