Home
Softono

Svelte Mono Icons

Open source MIT JavaScript
17
Stars
0
Forks
2
Issues
1
Watchers
5 years
Last Commit

 About Svelte Mono Icons

Mono icons for Svelte

Platforms

Web Self-hosted

Languages

JavaScript

Links

Need Help Installing Svelte Mono Icons?

We provide expert installation service for this software. Our team will install, configure, and secure Svelte Mono Icons on your server. plans start at just $30.

Svelte Mono Icons

View on GitHub

svelte-mono-icons

Svelte components for the beautiful mono icon set.

Installation

With npm npm install --save-dev svelte-mono-icons

or yarn yarn add --dev svelte-mono-icons

Usage

<script>
  import { MoonIcon, SunIcon, ... } from 'svelte-mono-icons';
</script>

<MoonIcon size="24" />
<SunIcon size="1.5x" class="yellow" focusable="false" />

<style>
  :global(.yellow path) {
    fill: yellow !important;
  }
</style>

Icons

Complete list of icons can be found here.

The naming convention for the components is pascal case with 'Icon' appended. So the icon 'arrow-up' become 'ArrowUpIcon'.

import { ArrowUpIcon } from 'svelte-mono-icons';

Acknowledgements