🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

react-native-akar-icons

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-akar-icons

A React Native compatible package for Akar Icons

0.1.12
latest
Source
npm
Version published
Weekly downloads
108
-10%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-akar-icons

This is a library compatible with React Native of the Akar Icons library. Please explore all the icons at akaricons.com.

The author of this package, is not the author of the Ankar Icons library. For any request of new icons, please visit Ankar Icons original repository.

Get Started

1. Installation

Install with npm:

npm install --save react-native-akar-icons

2. Usage

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

import { ArrowRight, LinkOut, Star } from "react-native-akar-icons";

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

export default MyComponent;

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

<Star color="yellow" size={32} strokeWidth={3} style={{ display: "block" }} />
PropDescriptionDefault
colorSet the icon colorcurrentColor
sizeSet the width and height of the svg icon24
strokeWidthSet the stroke width of the icon2
styleAdd inline styles to the element{}

You can also import the whole icon library like this:

import * as Icon from "react-native-akar-icons";

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

export default MyComponent;

Explore all the icons at akaricons.com.

Author

GuillaumeOj (@GuilllaumeOj)

Contributors

Arturo Wibawa (@agwibawa) (author of of the akar-icons)

License

MIT License, Copyright © 2020-present Arturo Wibawa, 2025 GuillaumeOj

Keywords

svg

FAQs

Package last updated on 23 May 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts