
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
flaming-icons
Advanced tools
A clean, simple icon library with tree-shaking support for Vue and Vuetify.
npm install flaming-icons
import { createApp } from 'vue';
import { createVuetify } from 'vuetify';
import { createVuetifyIconSet } from 'flaming-icons';
import { home, search, settings } from 'flaming-icons/icons';
// Create Vuetify with tree-shaking friendly icon set
const vuetify = createVuetify({
icons: {
defaultSet: 'flaming',
sets: {
flaming: createVuetifyIconSet([home, search, settings])
}
}
});
const app = createApp(App);
app.use(vuetify);
Then use in templates:
<template>
<v-icon>flaming:home</v-icon>
<v-icon>flaming:search</v-icon>
<v-icon>flaming:settings</v-icon>
</template>
import { loadAllCSS } from 'flaming-icons/css';
// Load all icon CSS
loadAllCSS();
<!-- Use with CSS classes -->
<i class="flaming-icon-home"></i>
<i class="flaming-icon-search"></i>
home
- Home/dashboard iconsearch
- Search/magnifying glass iconsettings
- Settings/gear iconedit
- Edit/pencil icondeleteIcon
- Delete/trash icon (exported as deleteIcon to avoid reserved word)userProfile
- User profile/avatar iconimport { createVuetifyIconSet } from 'flaming-icons/vuetify';
import { home, search, settings } from 'flaming-icons/icons';
// Pass icons directly to the icon set (tree-shaking friendly)
const iconSet = createVuetifyIconSet([home, search, settings]);
import {
loadAllCSS,
loadIconCSS,
getIconCSS,
getAllCSS
} from 'flaming-icons/css';
// Load specific icons
loadIconCSS(['home', 'search']);
// Get CSS string
const css = getIconCSS(['home', 'search']);
src/
├── icons/ # Icon definitions (tree-shakable)
├── vuetify.ts # Vuetify integration
├── css.ts # CSS/font icons
├── types/ # TypeScript definitions
└── index.ts # Main exports
MIT
FAQs
Complete icon library with tree-shaking support for Vue and Vuetify
The npm package flaming-icons receives a total of 12 weekly downloads. As such, flaming-icons popularity was classified as not popular.
We found that flaming-icons demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.