npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@abbasalidev/pixelrn-ui

v0.1.1-alpha.1

Published

A modern React Native UI component library for Expo and React Native apps.

Downloads

48

Readme

PixelRN UI

A modern, lightweight, and customizable React Native UI library built for React Native and Expo applications.

PixelRN UI provides beautiful, production-ready components inspired by the best design patterns from modern UI libraries such as MUI, Chakra UI, Mantine, Ant Design, and shadcn/ui—while remaining fully native to React Native.

Features

  • 🚀 React Native First
  • ⚡ Expo Compatible
  • 🎨 Modern Design System
  • 📝 TypeScript Support
  • 🌙 Theme Ready
  • 📱 Cross Platform (iOS & Android)
  • 🪶 Lightweight & Performant
  • 🧩 Modular Components

Preview

Button Variants

PixelRN Showcase

Installation

npm

npm install @pixelrn/ui

yarn

yarn add @pixelrn/ui

Current Components

Button

Supported variants:

  • solid
  • outline
  • ghost
  • soft
  • link
  • destructive

Supported sizes:

  • sm
  • md
  • lg

Usage

import React from "react";
import { View } from "react-native";
import { Button } from "@pixelrn/ui";

export default function App() {
  return (
    <View style={{ padding: 20, gap: 12 }}>
      <Button>Solid Button</Button>

      <Button variant="outline">Outline Button</Button>

      <Button variant="ghost">Ghost Button</Button>

      <Button variant="soft">Soft Button</Button>

      <Button variant="link">Link Button</Button>

      <Button variant="destructive">Delete Account</Button>
    </View>
  );
}

Button Variants

Solid

Primary action button.

<Button variant="solid">Save Changes</Button>

Outline

Secondary action button.

<Button variant="outline">Save Changes</Button>

Ghost

Minimal button without background or border.

<Button variant="ghost">View Details</Button>

Soft

Subtle background with primary-colored text.

<Button variant="soft">Continue</Button>

Link

Text-only action.

<Button variant="link">Forgot Password?</Button>

Destructive

Dangerous actions.

<Button variant="destructive">Delete Account</Button>

Button Sizes

<Button size="sm">
  Small
</Button>

<Button size="md">
  Medium
</Button>

<Button size="lg">
  Large
</Button>

Roadmap

v0.1.0-alpha.1

  • ✅ Button Component
  • ✅ Variant Support
  • ✅ Size Support
  • ✅ Loading State
  • ✅ Disabled State
  • ✅ TypeScript Support
  • ✅ Expo Support

v0.2.0

  • Input
  • Card
  • Badge
  • Avatar
  • Divider

v0.3.0

  • Modal
  • Alert Dialog
  • Toast
  • Accordion
  • Tabs

v0.4.0

  • Bottom Sheet
  • Dropdown
  • Select
  • Multi Select
  • Command Menu

Contributing

Contributions, bug reports, feature requests, and suggestions are welcome.

Before Starting Any Work

If you discover a bug, have an improvement idea, or want to propose a new feature:

  1. Open a GitHub Issue describing the problem, suggestion, or enhancement.
  2. Wait for discussion and approval from the maintainers.
  3. Once the issue is approved and assigned, you may start working on it.
  4. Submit a Pull Request referencing the related issue.

Please do not start development before opening an issue and receiving approval.

Contribution Process

  1. Fork the repository.
  2. Create a new branch from main.
git checkout -b feature/your-feature-name
  1. Make your changes.

  2. Test your changes thoroughly.

  3. Commit your changes.

git commit -m "feat: add new feature"
  1. Push your branch.
git push origin feature/your-feature-name
  1. Open a Pull Request and link the related GitHub Issue.

Reporting Bugs

Please include:

  • React Native version
  • Expo version
  • Device/Platform
  • Steps to reproduce
  • Expected behavior
  • Actual behavior
  • Screenshots (if applicable)

License

MIT License © Abbas Ali Akhtar