
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
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
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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.