@solar-icons/nuxt
v1.1.3
Published
Nuxt module for easily integrating Solar Icons into your Nuxt 3+ applications.
Downloads
58
Maintainers
Readme
@solar-icons/nuxt
The @solar-icons/nuxt package provides a seamless Nuxt module for integrating Solar icons into your Nuxt 3+ applications. This module acts as a specialized wrapper around @solar-icons/vue, offering auto-import capabilities, global configuration, and optimized performance specifically designed for the Nuxt ecosystem.
Installation
Install the package using npm, pnpm or yarn:
nuxi module add @solar-icons/nuxtNote: The
nuxi module addcommand automatically registers the module in yournuxt.config.ts. However, if you're using npm, yarn, or pnpm directly, you'll need to manually include@solar-icons/nuxtin your Nuxt configuration file.
Configuration
// nuxt.config.ts
export default defineNuxtConfig({
modules: ['@solar-icons/nuxt'],
solarIcons: {
// Prefix for auto-imported components (default: 'Solar')
namePrefix: 'Solar',
// Auto-import all icons as components (default: true)
autoImport: true,
// Inject global provider automatically (default: true)
provider: true,
// Default icon properties
color: 'currentColor',
size: 24,
weight: 'Linear',
mirrored: false,
},
})Usage
Auto-imported Icons
With auto-import enabled (default), you can use any Solar icon directly in your templates without manual imports:
<template>
<div>
<SolarArrowUp :size="24" weight="Outline" :mirrored="true" />
<SolarArrowsArrowDown :size="32" weight="BoldDuotone" />
<SolarArrowsAltArrowLeft color="#fff" class="bg-black" weight="Bold" />
</div>
</template>Manual Import via Aliases
For more control, you can manually import icons using the provided aliases:
<template>
<div>
<ArrowUp :size="24" weight="Outline" />
<solar.Arrows.ArrowDown :size="32" weight="BoldDuotone" />
<Arrows.AltArrowLeft color="#fff" weight="Bold" />
</div>
</template>
<script setup>
import { ArrowUp } from '#solar-icons'
import * as solar from '#solar-icons/category'
import { Arrows } from '#solar-icons/category'
import { SolarProvider } from '#solar-icons/lib'
</script>Global Configuration with SolarProvider
The module automatically provides a global configuration context. You can override these defaults using the SolarProvider component:
<template>
<SolarProvider :size="32" color="purple" weight="Linear">
<YourComponents />
</SolarProvider>
</template>
<script setup>
import { SolarProvider } from '#solar-icons/lib'
</script>Using Composition API
Access and modify icon configurations using the Composition API:
<template>
<div>
<ArrowUp :size="iconSize" weight="Outline" />
<button @click="increaseSize">Increase Size</button>
</div>
</template>
<script setup>
import { ref } from 'vue'
import { ArrowUp, useSolar } from '#solar-icons/lib'
const { config, setSize } = useSolar()
const iconSize = ref(24)
const increaseSize = () => {
const newSize = parseInt(iconSize.value) + 4
iconSize.value = newSize
setSize(newSize)
}
</script>Configuration Options
The module offers the following configuration options in your nuxt.config.ts:
| Option | Type | Default | Description |
|--------|------|---------|-------------|
| namePrefix | string | 'Solar' | Prefix for auto-imported components |
| autoImport | boolean | true | Auto-import all icons as components |
| provider | boolean | true | Inject global provider automatically |
| color | string | 'currentColor' | Default icon color |
| size | number | string | 24 | Default icon size |
| weight | string | 'Linear' | Default icon style |
| mirrored | boolean | false | Default horizontal flip state |
Available Aliases
The module provides these import aliases for convenience:
#solar-icons- Exports all icons and components from@solar-icons/vue#solar-icons/lib- Exports library utilities likeSolarProvider,useSolar#solar-icons/category- Exports categorized icon collections
Compatibility
This module is compatible with:
- Nuxt 3.0.0 and higher
- Node.js 18.0.0 and higher
License
This library is licensed under the MIT License, making it free for both personal and commercial use. However, the Solar icon pack is licensed under CC BY 4.0 by 480 Design, which allows commercial use with attribution. Please visit 480 Design's Figma page to explore the original icon set or see the LICENSE-THIRD-PARTY file.
Acknowledgements
Special thanks to 480 Design for creating the original Solar icon pack. Additional appreciation goes to Phosphor Icons and Lucide Icons for their inspiration in shaping the structure and approach of the @solar-icons packages.
For detailed documentation and examples, refer to the project's main documentation.
