0.0.5 • Published 1 year ago

@devicon/vue v0.0.5

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year 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

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago