
Company News
Meet the Socket Team at RSAC and BSidesSF 2026
Join Socket for live demos, rooftop happy hours, and one-on-one meetings during BSidesSF and RSA 2026 in San Francisco.
@aplus-frontend/icon
Advanced tools
Vue3 SVG icon components integrated from [`@aplus-frontend/icon`](https://www.npmjs.com/settings/aplus-frontend/packages)
Vue3 SVG icon components integrated from @aplus-frontend/icon
can be imported like a component. try it now 🎉
pnpm add @aplus-frontend/icon -w
First, you should add the icons that you need into the library. After that, you can use icons in your Vue components as simply as this:
import { IconApOrder } from '@aplus-frontend/icon'
<template>
<IconApOrder />
</template>
Style properties of icon, like fontSize and color
<script setup>
import { IconApLogistics } from '@aplus-frontend/icon';
</script>
<template>
<IconApLogistics
:style="{
fontSize: '40px',
display: 'inline-block',
animation: 'spin 4s linear infinite',
}"
/>
</template>
<style lang="less">
@keyframes spin {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
</style>
You can see more detail in the document
// or you can import all of the icons
import icons from '@aplus-frontend/icon';
pnpm run build:icons # Build library
FAQs
Vue3 SVG icon components integrated from [`@aplus-frontend/icon`](https://www.npmjs.com/settings/aplus-frontend/packages)
We found that @aplus-frontend/icon demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Join Socket for live demos, rooftop happy hours, and one-on-one meetings during BSidesSF and RSA 2026 in San Francisco.

Research
/Security News
Malicious Packagist packages disguised as Laravel utilities install an encrypted PHP RAT via Composer dependencies, enabling remote access and C2 callbacks.

Research
/Security News
OpenVSX releases of Aqua Trivy 1.8.12 and 1.8.13 contained injected natural-language prompts that abuse local AI coding agents for system inspection and potential data exfiltration.