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 🙏

© 2024 – Pkg Stats / Ryan Hefner

svelte-remixicon

v2.6.1

Published

An icon library for Svelte/SvelteKit based on Remix Icon. Consists of more than 3000 icons.

Downloads

22,419

Readme

svelte-remixicon: A vibrant icon library for your Svelte/SvelteKit app

If you're looking for a way to add visually stunning icons to your Svelte/SvelteKit project, you're in luck! svelte-remixicon is a comprehensive icon library built with the popular Remix Icon pack. With a total of 3020 icons available, you'll have plenty of options to choose from to bring some color and personality to your app.

Easy installation

Getting started with svelte-remixicon is a breeze. All you have to do is run the following command:

npm install --save-dev svelte-remixicon

Simple usage

Using svelte-remixicon couldn't be simpler. Just import the icons you want to use, and you're ready to go! For example:

<script>
  import { RiRemixiconLine, RiRemixiconFill } from 'svelte-remixicon';
</script>

<!-- Or (Recommended for faster compilation in dev mode)-->

<script>
  import RiRemixiconLine from 'svelte-remixicon/RiRemixiconLine.svelte';
  import RiRemixiconFill from 'svelte-remixicon/RiRemixiconLineFill.svelte';
</script>

Almost every icon has two variants. One is line: <RiRemixiconLine /> and the
other is fill: <RiRemixiconFill />

And that's it! You can check out all the available icons on the Remix Icon website.

Custom styling

If you want to customize the appearance of your icons, you can easily do so by adding your own classes to the icon components. For example:

<style>
  :global(svg.xyz) {
    margin-block: 3rem;
  }
</style>

<RiRemixiconLine class="xyz" />

You will also find the class remixicon and ri-<icon-name> on the svg element by default. You can use them to style the icons as well.

Component naming

To make it easy to find the icons you need, we've used the same names as the original Remix Icon library. For example:

  • ri-home-lineRiHomeLine
  • ri-message-3-fillRiMessage3Fill
  • and so on...

Available props

Each icon component comes with a range of available props to customize its appearance. These include:

| prop name | default value | usable value | description | | --------- | -------------- | ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | size | 1em | any valid width/height attribute | determines the width and height of the icon | | color | currentColor | any valid color value for svg | determines the fill of the icon | | class | '' | any valid string for html class attribute | custom class for custom styling | | label | '' | any string to be used as aria-label | should be used when the svg icon is used as an image/graphic element. It will also add role="img" to the svg element. If not passed then aria-hidden="true" will be added to the svg element to hide it from screen readers |

$$restProps was also passed down.

Using events

The icon components themselves do not propagate events. Non-interactive elements should not have such events that rely on user interaction. If you wish to capture a click event on an icon, it is recommended to enclose the icon within a button or a tag and attach the event handler to that container.

<script>
  import RiRemixiconLine from 'svelte-remixicon/RiRemixiconLine.svelte';

  function handleClick() {
    console.log('Icon clicked!');
  }
</script>

<button on:click="{handleClick}">
  <RiRemixiconLine />
</button>

License

svelte-remixicon is licensed under the MIT License.