Skip to content

Commit

Permalink
Use renamed icons for ActionButton example
Browse files Browse the repository at this point in the history
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
  • Loading branch information
raimund-schluessler authored and backportbot[bot] committed Sep 20, 2021
1 parent 460f3c8 commit f023df9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/ActionButton/ActionButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ You can also use a custom icon, for example from the vue-material-design-icons l
<Actions>
<ActionButton>
<template #icon>
<HandLeft
<HandBackLeft
:size="24"
decorative
title="" />
Expand All @@ -57,7 +57,7 @@ You can also use a custom icon, for example from the vue-material-design-icons l
</ActionButton>
<ActionButton>
<template #icon>
<HandRight
<HandBackRight
:size="24"
decorative
title="" />
Expand All @@ -67,13 +67,13 @@ You can also use a custom icon, for example from the vue-material-design-icons l
</Actions>
</template>
<script>
import HandLeft from 'vue-material-design-icons/HandLeft'
import HandRight from 'vue-material-design-icons/HandRight'
import HandBackLeft from 'vue-material-design-icons/HandBackLeft'
import HandBackRight from 'vue-material-design-icons/HandBackRight'
export default {
components: {
HandLeft,
HandRight,
HandBackLeft,
HandBackRight,
},
}
</script>
Expand Down

0 comments on commit f023df9

Please sign in to comment.