All Projects → artcoholic → Akar Icons

artcoholic / Akar Icons

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

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Akar Icons

Tabler Icons
A set of over 1400 free MIT-licensed high-quality SVG icons for you to use in your web projects.
Stars: ✭ 10,858 (+5801.09%)
Mutual labels:  svg, svg-icons, icon-pack, icon
Remixicon
Open source neutral style icon system
Stars: ✭ 3,956 (+2050%)
Mutual labels:  svg, icon, icon-pack
Simple Icons
SVG icons for popular brands
Stars: ✭ 12,090 (+6470.65%)
Mutual labels:  svg, svg-icons, icon-pack
Icons
The premium icon font for @uiwjs Component Library. https://uiwjs.github.io/icons
Stars: ✭ 99 (-46.2%)
Mutual labels:  svg, icon, svg-icons
Icons Flat Osx
Free Flat icons For OSX
Stars: ✭ 366 (+98.91%)
Mutual labels:  icon, svg-icons, icon-pack
Coreui Icons
CoreUI Free Icons - Premium designed free icon set with marks in SVG, Webfont and raster formats
Stars: ✭ 1,813 (+885.33%)
Mutual labels:  svg, svg-icons, icon-pack
Vue Unicons
1000+ Pixel-perfect svg icons for your next project as Vue components
Stars: ✭ 828 (+350%)
Mutual labels:  svg, svg-icons, icon-pack
icons-flat-osx
Free Flat icons For OSX
Stars: ✭ 371 (+101.63%)
Mutual labels:  icon-pack, svg-icons, icon
Phosphor Icons
A flexible icon family for the web
Stars: ✭ 56 (-69.57%)
Mutual labels:  svg, svg-icons, icon-pack
Boxicons
High Quality web friendly icons
Stars: ✭ 1,104 (+500%)
Mutual labels:  svg, svg-icons, icon-pack
React Icomoon
It allows you to simply view the icons in the selection.json file provided by Icomoon.
Stars: ✭ 48 (-73.91%)
Mutual labels:  svg, icon, svg-icons
Cryptocurrency Icons
A set of icons for all the main cryptocurrencies and altcoins, in a range of styles and sizes.
Stars: ✭ 2,116 (+1050%)
Mutual labels:  icon, svg-icons, icon-pack
Phosphor React
A flexible icon family for React
Stars: ✭ 97 (-47.28%)
Mutual labels:  svg, svg-icons, icon-pack
Circle Flags
A collection of 300+ minimal circular SVG country flags
Stars: ✭ 139 (-24.46%)
Mutual labels:  svg, svg-icons, icon-pack
Svg Icon
👻 A lightweight library that makes it easier to use SVG icons in your Angular Application
Stars: ✭ 112 (-39.13%)
Mutual labels:  svg, svg-icons
Materialdesign Svg
@mdi/svg Dist for Material Design Icons.
Stars: ✭ 166 (-9.78%)
Mutual labels:  svg, svg-icons
Sb
SVG badges to display
Stars: ✭ 99 (-46.2%)
Mutual labels:  svg, icon
React Native Svg Icon
A simple, but flexible SVG icon component for React Native
Stars: ✭ 164 (-10.87%)
Mutual labels:  svg, svg-icons
Feathericon
simply generic vector icon collection - including sketch file, svg files, and font files.
Stars: ✭ 178 (-3.26%)
Mutual labels:  svg, svg-icons
Vue Octicon
Octicon component for Vue.js, using inline SVG.
Stars: ✭ 129 (-29.89%)
Mutual labels:  svg, icon

npm npm

akar icons

Akar Icons

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


For Designers

Explore all icons at akaricons.com. Simply click the icon you'd like to use and paste it to your favorite application (Figma, Sketch, XD).


For developers

Akar icons are currently available as individual React components. Start using it today.

1. Installation

Install with npm:

npm install --save akar-icons

2. Usage

Import the icons you need into your React project and declare them in your render method:

import { ArrowRight, Star, LinkOut } from 'akar-icons';

const MyComponent = () => {
  return (
    <div>
      <ArrowRight />
      <Star />
      <LinkOut />
    </div>
  );
};

export default MyComponent;

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

<Star color="yellow" size={32} strokeWidth={3} style={{ display: "block" }}/>
Prop Description Default
color Set the icon color currentColor
size Set the width and height of the svg icon 24
strokeWidth Set the stroke width of the icon 2
style Add inline styles to the element {}

You can also import the whole icon library like this:

import * as Icon from 'akar-icons';

const MyComponent = () => {
  return <Icon.ArrowRight />
};

export default MyComponent;

Explore all icons at akaricons.com.

Author

Arturo Wibawa (@agwibawa)

License

MIT License, Copyright © 2020-present Arturo Wibawa.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].