New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

react-native-ico-pixel

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-ico-pixel

Pixel Icons for React Native

latest
Source
npmnpm
Version
7.0.1
Version published
Maintainers
1
Created
Source

Pixel Icons for React Native

react-native-ico-pixel

351 Vector Icons for React Native

comment border-right checkbox-marked

List of icons

  • List of Pixel Icons

Usage

import Icon from 'react-native-ico-pixel';


// Inside some view component
render() {
    return (
        <>
          <Icon name="comment" />
          <Icon name="border-right" height="40" width="40" />
          <Icon name="checkbox-marked" color="red" />
          <Icon name="checkbox-marked" colors={{ "#000000": "#FFFFFF" }} />
          <Icon name="border-right" badge="10" />
          <Icon name="border-right" badge={{value: 'A', fontSize: 25, radius: 22, position:'top_left', color:'orange', backgroundColor:'blue'}}/>
          <Icon name="comment" background="circle" />
          <Icon name="comment" background={{ type: "button", color: 'green' }} />
        </>
    );
}

Installation

yarn

yarn add react-native-ico-pixel react-native-svg

npm

npm install --save react-native-ico-pixel react-native-svg
react-native link react-native-svg

react-native-svg is a peer dependency. Install a current version in the app so the package uses the app-level native module instead of pulling in an older nested copy.

pod install (for iOS)

cd ios && pod install && cd ..

API

<Icon name [color width height background badge ...rest] />

Returns a SvgXml icon by name and group.

nameoptionaldefault valuedescriptionexamples
namenoname of icon"comment"
coloryesline color, css style"#00ff00", "#0f0", "green"
colorsyesreplace colors{"#FFFFFF": "#000000", "#f00": "#00f"} // white to black, red to blue
widthyes20width of the icon40
heightyes20height of the icon40
backgroundyesbackground type"circle"
backgroundyesbackground object{type: "circle", color: 'yellow'}
badgeyesbadge string"10"
badgeyesbadge object{value: 'A', fontSize: 25, radius: 22, position:'top_left', color:'orange', backgroundColor:'blue'}
...restyesother propsstyle={{backgroundColor: "#00f"}}

Icons Made by

Dave Gandy

Created by

Dimitry Ivanov 2@ivanoff.org.ua # curl -A cv ivanoff.org.ua

Keywords

React

FAQs

Package last updated on 26 Mar 2026

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