0.0.17 • Published 8 months ago

moe-icons v0.0.17

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
8 months ago

Moe Icons

A modern icon library for React and Vue.

Installation

# npm
npm install moe-icons

# yarn
yarn add moe-icons

# pnpm
pnpm add moe-icons

Usage

// React (ESM)
import { IconName } from 'moe-icons/react';

// React (CommonJS)
const { IconName } = require('moe-icons/react');

// Vue (ESM)
import { IconName } from 'moe-icons/vue';

// Vue (CommonJS)
const { IconName } = require('moe-icons/vue');

React

import { ChevronRight } from 'moe-icons/react';

function MyComponent() {
  return (
    <ChevronRight
      className="w-6 h-6"
      strokeWidth={2}
    />
  );
}

Vue

<template>
  <ChevronRight
    class="w-6 h-6"
    :stroke-width="2"
  />
</template>

<script>
import { ChevronRight } from 'moe-icons/vue';

export default {
  components: {
    ChevronRight
  }
}
</script>

Available Icons

Visit our Moeicons to see all available icons.

0.0.17

8 months ago

0.0.16

8 months ago

0.0.15

8 months ago

0.0.14

8 months ago

0.0.13

8 months ago

0.0.12

9 months ago

0.0.11

9 months ago

0.0.10

9 months ago

0.0.9

9 months ago

0.0.8

9 months ago

0.0.7

9 months ago

0.0.6

9 months ago

0.0.5

9 months ago

0.0.4

9 months ago

0.0.3

9 months ago

0.0.2

9 months ago

0.0.1

9 months ago