Skip to content

Commit

Permalink
fix(Template): add string type to width and height props
Browse files Browse the repository at this point in the history
  • Loading branch information
therufa committed Oct 6, 2018
1 parent f5ed828 commit db66204
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ export default Vue.component('mdi-{{icon}}-icon', {
props: {
className: [Object, Array, String],
width: {
type: Number,
type: [Number, String],
'default': 24
},
height: {
type: Number,
type: [Number, String],
'default': 24
},
viewBox: {
Expand Down

0 comments on commit db66204

Please sign in to comment.