[Vuejs]-ELEMENT UI – How to increase the size of ICON?

0👍

the icon has same property as normal text.
just use

<style>
.el-icon-delete {'
  font-size: 20px;
}
</style>

just change the size with the size you want.

Leave a comment