TwistIcons

English | 简体中文

packageversion
@twistify/react-iconsnpm version
@twistify/vue3-iconsnpm version
@twistify/vue2-iconsnpm version
@twistify/icons-pluginnpm version

Twist-Icons is a set of high-quality SVG icon libraries. It collection popular Icons provide ReactVue3 and Vue2 Icons component, you can easy use them with ES6 import.

Usage

For React

npm i @twistify/react-icons --save
import { IconProvider } from '@twistify/react-icons'
import { AiThunderboltFilled } from '@twistify/react-icons/ai'
import { TiModeDark } from '@twistify/react-icons/ti'
 
export default function App() {
  return (
    <IconProvider value={{ size: 60 }}>
      <AiThunderboltFilled color="#906efe" />
      <TiModeDark size={30} />
    </IconProvider>
  )
}

For Vue3

npm i @twistify/vue3-icons --save
<script setup lang="ts">
import { IconProvider } from '@twistify/vue3-icons'
import { AiThunderboltFilled } from '@twistify/vue3-icons/ai'
import { TiModeDark } from '@twistify/vue3-icons/ti'
</script>
 
<template>
  <IconProvider :size="60">
    <AiThunderboltFilled color="#906efe" />
    <TiModeDark :size="30" />
  </IconProvider>
</template>

For Vue2

npm i @twistify/vue2-icons --save
<template>
  <IconProvider :size="60">
    <AiThunderboltFilled color="#906efe" />
    <TiModeDark :size="30" />
  </IconProvider>
</template>
 
<script>
import { IconProvider } from '@twistify/vue2-icons'
import { AiThunderboltFilled } from '@twistify/vue2-icons/ai'
import { TiModeDark } from '@twistify/vue2-icons/ti'
export default {
  components: {
    IconProvider,
    AiThunderboltFilled,
    TiModeDark,
  }
}
</script>

Icon API

An universal icon component is provided for customizing color & size of the inner SVG icon.

proptypedefaultdescription
sizenumber-Size of the icon
colorstring-Color of the icon
styleCSSProperties-Style of the icon
classstring-Class of the icon
titlestring-SVG title of the icon
spinstringfalseSpin animation of the icon
rotatestring-Rotate style of the icon

IconProvider API

IconProvider will affect all the descendant Icons' default prop value, but the priority less than icon component user props.

React IconProvider API

proptypedefaultdescription
sizenumber-Size of the icon
colorstring-Color of the icon
styleCSSProperties-Style of the icon
classstring-Class of the icon
attrsSVGAttributes-SVGAttributes of the icon

Vue IconProvider API

proptypedefaultdescription
sizenumber-Size of the icon
colorstring-Color of the icon

Auto Import

If your project use Vue3 or Vue2, you can use the unplugin-vue-components plugin to automatically import components without using import icon component in the project.

npm i unplugin-vue-components @twistify/icons-plugin -D
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import Components from 'unplugin-vue-components/vite'
import { TwistIconsVueResolver } from '@twistify/icons-plugin'
 
// https://vitejs.dev/config/
export default defineConfig({
  plugins: [
    vue(),
    Components({
      resolvers: [
        TwistIconsVueResolver({
          version: 'vue3' // or vue2
        })
      ]
    })
  ]
})

Migrate to @twistify

To improved ease of use and efficiency, the @twist-space namespace migrate to @twistify.

Why the Change?

The primary reason for this migration is to simplify the typing and usage experience. The @twistify namespace eliminates the hyphen (-) present in @twist-space, making it quicker and more convenient to input, especially during frequent development tasks. This small change helps streamline workflows, reducing the potential for typing errors and saving time.

What’s Changing?

Old Packages:

@twist-space/react-icons

@twist-space/vue3-icons

@twist-space/vue2-icons

@twist-space/twist-icons-plugins

New Packages:

@twistify/react-icons

@twistify/vue3-icons

@twistify/vue2-icons

@twistify/icons-plugin

Credits

This project inspired by react-iconsxiconsant-design-icons. The project Icons source from iconify, I learned a lot from it.