Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
@jamescoyle/vue-icon
Advanced tools
Consider using the webcomponent version of this component for an icon component that can be used in any modern browser with any framework.
An icon component which makes it easy to render SVG path based icons in any Vue project. Provides several helpful properties to manipulate the icon and supports any icon pack which provides icons as a single SVG path to be displayed on a square viewbox.
Install from NPM
npm install @jamescoyle/vue-icon
Import into your project
import SvgIcon from '@jamescoyle/vue-icon'
The following example uses @mdi/js which provides a wide range of icon paths. It shows how you might use an icon within a single file component.
<template>
<svg-icon type="mdi" :path="path" :size="48"></svg-icon>
</template>
<script>
import SvgIcon from '@jamescoyle/vue-icon'
import { mdiAccount } from '@mdi/js'
export default {
name: "my-cool-component",
components: {
SvgIcon
},
data() {
return {
path: mdiAccount,
}
}
}
</script>
Name | Default | Description |
---|---|---|
type | null | This sets the size and viewbox to match the recommended size for the icon pack specified. |
path | null | Required. An SVG path to render as an icon |
size | 24 | The width and height of the SVG element |
viewbox | "0 0 24 24" | The viewBox of the SVG element |
flip | null | One of "horizontal", "vertical", or "both". Flips the icon in the specified direction(s). |
rotate | 0deg | Rotates the icon by the specified value. Can be any valid CSS angle value. |
By default the icon will inherit the current font color of the container it is placed within. You can easily provide a specific color using an inline style on the element (style="color: red"
) or can target the tag as normal with CSS rules.
You should make use of aria attributes to improve accessibility for users that use screen reading technology. You can use aria-labelledby
to create a link between an icon and its label. A descriptive aria-label
can be used to allow screen readers to announce an icon if there is no visual label to accompany it.
FAQs
Icon component for Vue.js
The npm package @jamescoyle/vue-icon receives a total of 6,144 weekly downloads. As such, @jamescoyle/vue-icon popularity was classified as popular.
We found that @jamescoyle/vue-icon demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.