0.0.5 • Published 11 months ago

@devicon/vue v0.0.5

Weekly downloads
-
License
MIT
Repository
-
Last release
11 months ago

@devicon/vue

Vue components for the SVG icons of the devicon project.

Installation

yarn add @devicon/vue
# OR
npm install @devicon/vue
# OR
pnpm add @devicon/vue

Usage

<script setup>
import ReactOriginalIcon from "@devicon/vue/react/original";
// or (not recommended, as it can significantly increase bundle size)
import { GithubOriginalIcon, GithubOriginalWordmarkIcon } from "@devicon/vue";
</script>

<template>
  <GithubOriginalWordmarkIcon />
  <GithubOriginalIcon size="2em" />
  <ReactOriginalIcon class="my-class" />
</template>

With Color

Icons that support single-color customization can be recolored as follows:

<script setup>
import DeviconPlainIcon from "@devicon/vue/devicon/plain";
</script>

<template>
  <DeviconPlainIcon color="white" />
</template>
0.0.5

11 months ago

0.0.4

11 months ago

0.0.3

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago