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

bielaui

v1.0.21

Published

UI component library for React Native + NativeWind, mobile-first and platform-specific.

Downloads

20

Readme

🧩 BielaUI

BielaUI is a mobile-first, cross-platform UI component library for React Native + NativeWind, tailored for modern apps built with Expo.
It provides native-feeling, theme-aware components inspired by Material Design (Android) and UIKit (iOS).


🚀 Installation

    npm install bielaui

or

    yarn add bielaui

Required peer dependencies:

  • react, react-native, expo
  • nativewind
  • tailwindcss with nativewind/preset ⚙️ Tailwind Setup

Add bielaui to your tailwind.config.js:


// tailwind.config.js
module.exports = {
content: [
        './App.{js,ts,jsx,tsx}',
        './components/**/*.{js,ts,jsx,tsx}',
        './node_modules/bielaui/**/*.{js,ts,jsx,tsx}', // ✅ include bielaui
        ],
presets: [require('nativewind/preset')],
theme: {
extend: {},
},
plugins: [],
};

📦 Available Components

✅ Button A platform-aware button that renders Pressable on iOS and TouchableNativeFeedback on Android, with built-in variants and full NativeWind support.


import { Button } from 'bielaui';
import { Ionicons } from '@expo/vector-icons';

<Button
    title="Primary"
    variant="primary"
    icon={<Ionicons name="play" size={16} color="white" />}
    onPress={() => console.log('Pressed')}
    className="w-48"
/>

Props

| Prop | Type | Description | | --------------- | ------------------------------------------------------ | ---------------------------------------- | | title | string | The text inside the button | | variant | 'primary' | 'secondary' | 'tonal' | 'plain' | Visual style of the button | | icon | ReactNode | Icon component displayed before the text | | onPress | (event) => void | Button press callback | | loading | boolean | Displays ActivityIndicator when true | | loaderColor | string (hex / color name) | Customize the loading spinner color | | className | string (Tailwind classes) | Custom styles for the button container | | textClassName | string (Tailwind classes) | Custom styles for the button text |

Variants Example


<Button variant="primary" title="Primary" />
<Button variant="secondary" title="Secondary" />
<Button variant="tonal" title="Tonal" loading />
<Button variant="plain" title="Plain" />
<Button
  variant="tonal"
  icon={<Ionicons name="heart" size={20} color="#2563eb" />}
  className="w-10 h-10 rounded-xl"
/>

✨ Features

  • 🎯 Platform-specific behavior (Ripple effect on Android, opacity on iOS)
  • 🎨 Tailwind-compatible styling via NativeWind
  • ⚙️ Themeable, customizable, mobile-first
  • 💨 Lightweight and fast
  • ✅ Fully typed with TypeScript

🧱 Roadmap (in progress)

  • Button component (iOS & Android variants)
  • Text component with variants and theming
  • Switch / Toggle
  • Input / TextField
  • Modal & Dialog
  • Responsive layout primitives (Stack, Box, Grid)

📄 License

MIT — © 2025