Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

svelte-hero-icons

Package Overview
Dependencies
Maintainers
1
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte-hero-icons

Heroicons for Svelte (Project based on heroicons)

  • 4.0.0-beta.0
  • beta
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.9K
increased by11.12%
Maintainers
1
Weekly downloads
 
Created
Source

Svelte Heroicons

Info

Check out @steeze-ui/icons which is meant as a successor of svelte-hero-icons:

  • Icon Components for any framework (for now its only svelte)
  • Icon Packs (e.g heroicons, radix-icons, iconic-free)
  • A template to create your own publishable Icon Pack (Planned)
  • Now lives under an org that will focus on more ui tools that I have planned (primarily for svelte)

Description

  • complete heroicon set optimized for svelte
  • programatically change solid or outline version based on the solid attribute
  • fully typed for a great IDE experience
  • works with SvelteKit & Vite

Install

  • install as dependency (important)

NPM

npm install svelte-hero-icons

Configuration

SvelteKit & vitejs

  • Add this to your vite.config.js, so all icons are bundled into one file -> no import waterfalls
const config = {
  kit: {
    vite: {
      //!IMPORTANT so the icon data can be imported (as JSON)
      ssr: {
        noExternal: ["svelte-hero-icons"],
      },

      // no import waterfalls in development
      optimizeDeps: {
        include: ["svelte-hero-icons"],
      },
    },
  },
};
export default config;

Usage

  • Default is Outline version of icon
  • Use solid attribute for Solid Icons
<script>
  // Only import what you need!
  import { Icon, ArrowUp, Filter } from "svelte-hero-icons";
</script>

<!-- use solid attribute to control whether to show solid or outline version of icon -->
<Icon src="{Filter}" solid />

<!-- use size attribute to set icon size (32 -> 32px | 2rem | 100% == default ) -->
<Icon src="{ArrowUp}" size="32" />

<!-- use Windi CSS or tailwindcss classes directly -->
<Icon src="{Filter}" class="h-6 text-red-500 w-6" />

See all icons here: https://github.com/refactoringui/heroicons

Known Problems

Windows & pnpm

If you are developing with Windows or pnpm you need to prevent the dependency from being externalized for SSR:

const config = {
  // ...
  kit: {
    // ...
    vite: {
      // ...
      ssr: {
        noExternal: ["svelte-hero-icons"],
      },
    },
  },
};

Author

This package is based on heroicons

FAQs

Package last updated on 28 Dec 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc