
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@heroicons/vue
Advanced tools
@heroicons/vue is a Vue.js library that provides a collection of free, high-quality SVG icons. These icons are designed to be simple and easy to use in Vue.js applications. The package includes both outline and solid icons, making it versatile for different design needs.
Outline Icons
This feature allows you to use outline icons in your Vue.js application. The example demonstrates how to import and use an outline icon named 'academic-cap'.
<template>
<div>
<HeroIcon name="academic-cap" outline />
</div>
</template>
<script>
import { HeroIcon } from '@heroicons/vue/outline';
export default {
components: {
HeroIcon
}
};
</script>
Solid Icons
This feature allows you to use solid icons in your Vue.js application. The example demonstrates how to import and use a solid icon named 'academic-cap'.
<template>
<div>
<HeroIcon name="academic-cap" solid />
</div>
</template>
<script>
import { HeroIcon } from '@heroicons/vue/solid';
export default {
components: {
HeroIcon
}
};
</script>
Customizable Icons
This feature allows you to customize the size and color of the icons. The example demonstrates how to apply custom classes to an outline icon to change its size and color.
<template>
<div>
<HeroIcon name="academic-cap" outline class="w-6 h-6 text-blue-500" />
</div>
</template>
<script>
import { HeroIcon } from '@heroicons/vue/outline';
export default {
components: {
HeroIcon
}
};
</script>
vue-feather-icons is a Vue.js library that provides a collection of simple and elegant icons. Similar to @heroicons/vue, it offers a variety of icons that can be easily integrated into Vue.js applications. However, the design style of Feather Icons is more minimalistic compared to Heroicons.
vue-fontawesome is a Vue.js library that allows you to use Font Awesome icons in your Vue.js applications. It offers a much larger collection of icons compared to @heroicons/vue, including both free and premium icons. Font Awesome icons are more detailed and come in various styles such as solid, regular, and brands.
vue-material-design-icons is a Vue.js library that provides a collection of Material Design icons. These icons follow Google's Material Design guidelines and offer a different aesthetic compared to Heroicons. The library is extensive and includes icons for a wide range of use cases.
[2.1.2] - 2024-03-22
FAQs
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/tailwindlabs/heroicons/HEAD/.github/logo-dark.svg"> <source media="(pref
The npm package @heroicons/vue receives a total of 132,618 weekly downloads. As such, @heroicons/vue popularity was classified as popular.
We found that @heroicons/vue demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.