Skip to content

Commit

Permalink
fix(kmodal): missing kicon dependency (#807)
Browse files Browse the repository at this point in the history
Add missing `KIcon` dependency.
  • Loading branch information
kaiarrowood authored Sep 23, 2022
1 parent 7f8558f commit 9f71169
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/KModal/KModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,11 @@

<script>
import KButton from '@kongponents/kbutton/KButton.vue'
import KIcon from '@kongponents/kicon/KIcon.vue'
export default {
name: 'KModal',
components: { KButton },
components: { KButton, KIcon },
props: {
/**
Expand Down
1 change: 1 addition & 0 deletions packages/KModal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
},
"dependencies": {
"@kongponents/kbutton": "^7.1.8",
"@kongponents/kicon": "^7.1.8",
"@kongponents/styles": "^7.1.8"
},
"peerDependencies": {
Expand Down

0 comments on commit 9f71169

Please sign in to comment.