Skip to content

A perfectly rounded icon library made for designers, developers, and pretty much everyone.

License

Notifications You must be signed in to change notification settings

WilliamVenner/akar-icons-svelte

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

akar-icons

A perfectly rounded icon library made for designers, developers, and pretty much everyone. Explore all of our icons at akaricons.com.

akar icons

Get Started

1. Installation

Install with npm:

npm install --save akar-icons-svelte

2. Usage

Import the icons you need into your Svelte project and use them in components:

<script>
  import { ArrowRight, Star, LinkOut } from 'akar-icons-svelte';
</script>

<main>
  <ArrowRight />
  <Star />
  <LinkOut />
</main>

Icons can be configured with inline props including inline style objects:

<Star color="yellow" size={32} strokeWidth={3} />

You can also import the whole icon library:

<script>
  import * as Icon from 'akar-icons-svelte';
</script>

<main>
  <Icon.ArrowRight />
</main>

Explore all of our icons at akaricons.com.

Related Projects

Author

Arturo Wibawa (@agwibawa)

License

MIT License, Copyright © 2020-present Arturo Wibawa.

Credits

Svelte Support by WilliamVenner

About

A perfectly rounded icon library made for designers, developers, and pretty much everyone.

Topics

Resources

License

Stars

Watchers

Forks

Languages

  • Svelte 86.0%
  • JavaScript 14.0%