npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@saturniahub/icons

v4.1.6

Published

Biblioteca de ícones SVG para React - Mais de 1.500 ícones organizados por categoria

Downloads

176

Readme

Saturnia Icons v4.1.6

npm version License: MIT TypeScript

Biblioteca de ícones SVG para React com mais de 1.500 ícones

✨ Características

  • 🎨 Mais de 1.500 ícones
  • 🎯 Múltiplas variações
  • TypeScript com tipagem completa
  • 📦 Tree-shaking otimizado
  • 🚀 Zero dependências (apenas React)
  • 📱 Responsivo e acessível
  • 🎨 Customizável com props padrão do SVG

📊 Estatísticas

  • Total de Ícones: 1840
  • Categorias: 2
  • Variações: 3

🚀 Instalação

npm install @saturniahub/[email protected]
# ou
yarn add @saturniahub/[email protected]
# ou
pnpm add @saturniahub/[email protected]

📖 Uso Básico

import { SaturniaIcons } from '@saturniahub/icons';

function App() {
  return (
    <div>
      <SaturniaIcons.PlusLight />
      <SaturniaIcons.PlusLight />
      <SaturniaIcons.ArrowRightLight size={24} color="#000" />
    </div>
  );
}

⚙️ Compatibilidade com Bundlers

Esta biblioteca é compatível com todos os bundlers modernos:

  • Vite - Funciona out-of-the-box
  • Webpack - Funciona out-of-the-box
  • Create React App - Funciona out-of-the-box
  • Next.js - Funciona out-of-the-box
  • Parcel - Funciona out-of-the-box
  • Rollup - Funciona out-of-the-box

🔧 Solução de Problemas

Se você encontrar problemas de resolução de módulos, verifique se:

  1. Versão do Node.js: Use Node.js 16+
  2. Cache do bundler: Limpe o cache (npm run build -- --force)
  3. Dependências: Reinstale as dependências (rm -rf node_modules && npm install)

📝 Configuração Manual (Apenas se necessário)

Vite:

// vite.config.js
export default {
  optimizeDeps: {
    include: ['@saturniahub/icons']
  }
};

Webpack:

// webpack.config.js
module.exports = {
  resolve: {
    alias: {
      '@saturniahub/icons': 'node_modules/@saturniahub/icons/index.esm.js'
    }
  }
};

📖 Uso Avançado

import { SaturniaIcons, type IconName } from '@saturniahub/icons';

function IconButton({ iconName, ...props }: { 
  iconName: IconName; 
  [key: string]: any; 
}) {
  const IconComponent = SaturniaIcons[iconName];
  
  return (
    <button {...props}>
      <IconComponent size={20} />
    </button>
  );
}

// Uso
<IconButton iconName="AddPlusLight" onClick={() => console.log('clicked')} />

📁 Categorias Disponíveis

  • All: 1653 ícones
  • Brands: 187 ícones

🎨 Variações Disponíveis

  • Light: 1653 ícones
  • Colored: 105 ícones
  • Mono: 82 ícones

🔧 Props Disponíveis

Todos os ícones aceitam as seguintes props:

interface IconProps {
  size?: number | string;        // Tamanho do ícone
  color?: string;                // Cor do ícone
  className?: string;            // Classe CSS
  style?: React.CSSProperties;   // Estilos inline
  // ... todas as props padrão do SVG
}

📦 Build e Deploy

# Instalar dependências
npm install

# Build para produção
npm run build

# Testes
npm test

# Lint
npm run lint

🤝 Contribuindo

  1. Fork o projeto
  2. Crie uma branch para sua feature (git checkout -b feature/AmazingFeature)
  3. Commit suas mudanças (git commit -m 'Add some AmazingFeature')
  4. Push para a branch (git push origin feature/AmazingFeature)
  5. Abra um Pull Request

📄 Licença

Este projeto está licenciado sob a Licença MIT - veja o arquivo LICENSE para detalhes.

📋 Atribuições

Esta biblioteca inclui ícones derivados do projeto Lucide Icons, que são licenciados sob a ISC License. Alguns ícones também são derivados do projeto Feather Icons (MIT License).

Agradecemos aos contribuidores do Lucide Icons e Feather Icons por disponibilizarem esses ícones como código aberto.

🏢 Sobre

Desenvolvido com ❤️ pela Saturnia Tecnologia


Nota: Esta documentação é gerada automaticamente pelo sistema de build da Saturnia.