All Projects → artcoholic → akar-icons-app

artcoholic / akar-icons-app

Licence: MIT license
The homepage repo for Akar Icons. A perfectly rounded icon library made for designers, developers, and pretty much everyone.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to akar-icons-app

Paymentfont
A sleek webfont featuring your favourite payment methods
Stars: ✭ 1,586 (+2588.14%)
Mutual labels:  icon-pack
Flat Color Icons
Free Flat Color Icons
Stars: ✭ 2,014 (+3313.56%)
Mutual labels:  icon-pack
neu
Free icon set to the world
Stars: ✭ 26 (-55.93%)
Mutual labels:  icon-pack
Circle Flags
A collection of 300+ minimal circular SVG country flags
Stars: ✭ 139 (+135.59%)
Mutual labels:  icon-pack
Cryptocurrency Icons
A set of icons for all the main cryptocurrencies and altcoins, in a range of styles and sizes.
Stars: ✭ 2,116 (+3486.44%)
Mutual labels:  icon-pack
Awesome Iconjar
44 Collect free icon sets for iconjar. 收集免费的图标包,iconjar 格式(44套)。
Stars: ✭ 188 (+218.64%)
Mutual labels:  icon-pack
Plane Icon Theme
Is a modern icon theme for gnome linux versions.
Stars: ✭ 117 (+98.31%)
Mutual labels:  icon-pack
phosphor-android
An elegant and sophisticated line icon pack to declutter your home screen.
Stars: ✭ 27 (-54.24%)
Mutual labels:  icon-pack
Os Folder Icons
A collection of custom folder icons for (Mac, Linux and Windows)
Stars: ✭ 161 (+172.88%)
Mutual labels:  icon-pack
Ionicons
Premium hand-crafted icons built by Ionic, for Ionic apps and web apps everywhere 🌎
Stars: ✭ 15,802 (+26683.05%)
Mutual labels:  icon-pack
Coreui Icons
CoreUI Free Icons - Premium designed free icon set with marks in SVG, Webfont and raster formats
Stars: ✭ 1,813 (+2972.88%)
Mutual labels:  icon-pack
Terminal Icons
Beautiful icons for your favourite terminal apps like Hyper and iTerm2
Stars: ✭ 149 (+152.54%)
Mutual labels:  icon-pack
Iconshowcase Dashboard
A full-of-features, easy-to-customize, free and open source, Material Design dashboard for icon packs.
Stars: ✭ 197 (+233.9%)
Mutual labels:  icon-pack
Android
Delta Icon Pack for Android
Stars: ✭ 137 (+132.2%)
Mutual labels:  icon-pack
LibreICONS
SVG Icon Symbols with an MIT License.
Stars: ✭ 89 (+50.85%)
Mutual labels:  icon-library
Simple Icons
SVG icons for popular brands
Stars: ✭ 12,090 (+20391.53%)
Mutual labels:  icon-pack
Akar Icons
A perfectly rounded icon library made for designers, developers, and pretty much everyone.
Stars: ✭ 184 (+211.86%)
Mutual labels:  icon-pack
react-native-dynamic-vector-icons
Wrapper of react-native-vector-icons to use dynamic types
Stars: ✭ 84 (+42.37%)
Mutual labels:  icon-library
pixeden-stroke-7-icon
A series of iOS 7 inspired vector icons in a custom @font-face icon font that can be styled dynamically using CSS.
Stars: ✭ 81 (+37.29%)
Mutual labels:  icon-pack
React Native Vector Icons
Customizable Icons for React Native with support for image source and full styling.
Stars: ✭ 15,414 (+26025.42%)
Mutual labels:  icon-pack

Akar Icons

Akar is a perfectly rounded icon library made for designers, developers, and pretty much everyone. Use this library to bring life into your user interface and experience. Free to use for your personal and commercial projects. Start creating! Explore all of our icons at akaricons.com.

akar icons

Usage

There are currently 2 ways of implementing Akar Icons library to your website. The simplest one is through the Icon Fonts library just like Font Awesome and the other one is the React component package.

1. Icon Fonts

This method is the simplest to use because you only need to add the script to the document <head>, and reference the icons with an <i/> tag along with the appropriate class. Icon fonts are HTML/CSS under the hood so you can style and manipulate it just like any other HTML element.

<!DOCTYPE html>
<html>
  <head>
    <script src="https://unpkg.com/akar-icons-fonts"></script>
  </head>
  <body>
    <!-- EXAMPLE ICONS -->
    <i class="ai-cross"></i>
    <i class="ai-circle"></i>
    <i class="ai-heart"></i>
  </body>
</html>

Check out the full documentation at akar-icons-fonts repo page.

2. React Components

The React icon component library can be installed through npm. All icons can be configured with inline props with color, size, and strokeWidth including inline style objects.

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

const MyComponent = () => {
  return (
    <div>
      <ArrowRight />
      <Star color="yellow" size={32} strokeWidth={3} style={{ display: "block" }}/>
      <LinkOut />
    </div>
  );
};

export default MyComponent;

Check out the full documentation at akar-icons repo page.

Related Projects

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].