I want to use icons-vue so i installed with this command: yarn add @element-plus/icons-vue
this is the documentation: https://element-plus.org/en-US/component/icon.html#icon-usage
but when i refreshed the page i can not see the icons, how can i show the icons?
i tried to use globally
import ElementPlusIcons from '@element-plus/icons-vue'
...
createApp(App)
.use(ElementPlusIcons)
but does not work
<el-menu-item >
<el-icon> <edit></edit></el-icon>
</el-menu-item>
my project is not recognizing that library
