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

kimui-kit

v1.0.12

Published

KimUI is a comprehensive UI library for React Native, designed to provide beautifully crafted, reusable components and UI elements. With an intuitive and customizable design system, KimUI enables developers to quickly build modern, responsive mobile appli

Readme

KimUI-Kit

KimUI-Kit is a collection of reusable components for React Native that makes building UI simple and efficient. It provides a variety of pre-designed components, including buttons, text fields, spinners, and more, all customizable and ready to use in your React Native apps.

Components

Here are the components included in KimUI-Kit:

  • AdaptiveStatusBar: A component for adaptive status bar styling.
  • AlertX: A customizable alert component.
  • Animator: A component for animation effects like fade, slide, and zoom.
  • Avatar: A customizable avatar component.
  • Button: A button component that includes IconButton and LinkButton variants.
  • CheckBox: A checkbox component for selecting options.
  • colors: A module for defining colors used across your application.
  • CustomStatusBar: A custom status bar component.
  • Divider: A divider component for separating UI elements.
  • Dot: A dot indicator component.
  • FormWrapper: A wrapper component for forms.
  • HorizontalStepper: A horizontal stepper component for multi-step processes.
  • List: A list component to display items.
  • Locator: A component for displaying location-based information.
  • OTPInput: A component for entering OTPs (One-Time Passwords).
  • Pagination: A component for paginating lists.
  • Popup: A popup modal component.
  • RadioButton: A radio button component for selecting a single option.
  • Row: A row component for laying out elements in a horizontal row.
  • SafeAreaView: A component for rendering content within the safe area.
  • Spinner: A loading spinner component.
  • TextField: A text field component for user input.
  • TextFieldSelect: A text field with a select dropdown.
  • ToolBar: A toolbar component for navigation or actions.
  • Typography: A typography component for text styling.
  • VerticalDivider: A vertical divider component for UI separation.
  • VerticalStepper: A vertical stepper component for multi-step processes.

Installation

To install KimUI-Kit in your React Native project, run the following command:

yarn add kimui-kit

Or, if you're using npm:

npm install kimui-kit

Setup

Once installed, you can import the components as needed in your project:

import KUI, { AdaptiveStatusBar, Button, Typography, Avatar, etc. } from 'kimui-kit';

Usage

1. Initialize the Kit

Before using any components, you need to initialize the library with your configuration (e.g., colors, Google Maps API key).

import KUI from 'kimui-kit';

KUI.initialize({
  colors: {
    primary: {
      main: '#6B46C4',
      light: '#6B46C485',
      dark: '#1D2739',
      text: '#fff',
    },
    secondary: {
      main: '#fffbf4',
      light: '#2F5755',
      dark: '#d00',
      text: '#fff',
    },
  },
  googleMapApiKey: '', // Optional but required for using Locator component
});

2. Example Usage of Components

Button

<Button variant="contained" onPress={() => console.log("Button pressed")}>
  Click Me
</Button>

Typography

<Typography variant="h6" color="primary" gutterBottom={16}>
  This is a header
</Typography>

Locator

<Locator
  variant="contained"
  onLocationSelected={location => console.log(location)}
  label="Select Location"
  location={{ description: null }}
  renderInput={inputProps => <TextField {...inputProps} />}
  gutterBottom={16}
/>

Avatar

<Avatar size={50} imageUrl="https://example.com/avatar.jpg" />

Theme and Customization

KimUI-Kit supports dark and light modes, and you can easily switch between them using the UIThemeProvider and UIThemeContext.

import React, { useContext } from 'react';
import { UIThemeProvider, UIThemeContext } from 'kimui-kit';

const App = () => {
  const { themeState } = useContext(UIThemeContext);

  return (
    <UIThemeProvider>
      <Text style={{ color: themeState.value === 'dark' ? '#fff' : '#000' }}>
        Hello, World!
      </Text>
    </UIThemeProvider>
  );
};

Props Reference

Locator Props

interface LocatorProps {
  variant: 'contained' | 'outlined';
  onLocationSelected: (location: any) => void;
  label: string;
  error?: boolean;
  location?: { description: string | null };
  renderInput: (inputProps: any) => JSX.Element;
  gutterBottom?: number;
  helperText?: string;
  float?: boolean;
  country?: string;
}

Typography Props

interface TypographyProps {
  children: React.ReactNode;
  color?: string;
  style?: TextStyle | ViewStyle;
  textCase?: 'capitalize' | 'uppercase' | 'lowercase' | null;
  variant?: 'caption' | 'body1' | 'body2' | 'h6' | 'h5' | 'h4' | 'h3' | 'h2' | 'h1';
  align?: 'center' | 'left' | 'right';
  gutterBottom?: number;
  fontWeight?: 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
  fontFamily?: 'Inter-Thin' | 'Inter-Extra-Light' | 'Inter-Light' | 'Inter-Variable' | 'Inter' | 'Inter-Regular' | 'Inter-Medium' | 'Inter-Semi-Bold' | 'Inter-Bold' | 'Inter-Extra-Bold';
}

License

The kimui-kit library is maintained by Kimjay with support from Hoddy Inc. Kimjay is a Senior Full Stack Web and Mobile App Developer with 5 years of working experience.