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 🙏

© 2025 – Pkg Stats / Ryan Hefner

tharikida-ui

v2.0.4

Published

A modern, lightweight React UI component library with built-in theming, accessibility, and full TypeScript support. Create beautiful, responsive, and customizable web apps faster with ready-to-use components for any project.

Downloads

26

Readme

Tharikida UI 🚀🔥

npm version license downloads

A Modern React Component Library for Fast, Flexible, and Themed UIs

Tharikida UI is a lightweight React component library designed for simplicity, flexibility, and a beautiful user experience. It offers a growing set of accessible, customizable, and themeable components for building professional, modern web applications with ease.

Why Tharikida UI?

  • Modern Design: Clean, minimal, and visually appealing UI components.
  • Fast & Lightweight: Minimal dependencies, optimized for performance.
  • 🎨 Theming Built-In: Effortlessly customize colors, fonts, and corner radius globally with the ThemeProvider.
  • 🛠️ Highly Customizable: All components support custom styles, theming, and flexible props.
  • Accessible: Built with accessibility and usability best practices.
  • 📦 Comprehensive: Includes Button, Modal, Card, Input, Alert, ProgressBar, List, Table, and more.

Links


Installation

Install Tharikida UI in your React project:

npm install tharikida-ui

Getting Started

Here's a quick example to get you up and running:

import React from "react";
import { ThemeProvider } from "tharikida-ui";
import { Button } from "tharikida-ui/button";

const App = () => (
  <ThemeProvider
    primaryColor="#4caf50"
    secondaryColor="#ff9800"
    fontFamily="'Montserrat', sans-serif"
    cornerRadius={16}
  >
    <h1>Welcome to Tharikida UI!</h1>
    <Button type="primary" onClick={() => alert("Clicked!")}>
      Themed Button
    </Button>
  </ThemeProvider>
);

export default App;

Features

  • Modern Design: Clean, minimal, and visually appealing UI components.
  • Fast & Lightweight: Optimized for performance with minimal dependencies.
  • 🎨 Theming Built-In: Change colors, fonts, and corner radius globally with the ThemeProvider.
  • 🛠️ Customizable: All components support custom styles, theming, and flexible props.
  • Accessible: Built with accessibility best practices.
  • 📦 Comprehensive: Includes Button, Modal, Card, Input, Alert, ProgressBar, List, Table, and more.

Playground

Want to experiment with theming and components live? Visit the Playground on the homepage! Tweak colors, font, and corner radius, and see instant updates with code samples.


Components

Tharikida UI includes:

  • Button: Customizable, theme-aware buttons
  • Modal: Simple modal dialogs
  • Input: TextInput, CheckBox, RadioButton, DropDown, TextArea, ToggleSwitch
  • Card: Flexible content containers
  • Alert: Popup alerts
  • ProgressBar: Sleek progress indicators
  • List & ListTile: Structured lists
  • Table: Themed data tables
  • Snackbar, Tooltip, Loader, and more!

Customization & Theming

All components support custom styles via props. For global theming, use the ThemeProvider to set primary/secondary colors, font, and corner radius. You can also override styles and corner radius per component.


Contributing

Contributions are welcome! If you have suggestions, bug reports, or want to add new components, please open an issue or submit a pull request on GitHub.

  1. Fork the repo
  2. Create your feature branch (git checkout -b feature/YourFeature)
  3. Commit your changes (git commit -am 'Add new feature')
  4. Push to the branch (git push origin feature/YourFeature)
  5. Open a pull request

Tech Stack Compatibility

Tharikida UI is designed to work seamlessly with modern React-based projects, including:

  • React (v18 and v19)
  • TypeScript
  • Next.js
  • Vite
  • Create React App
  • Any other React framework or build tool supporting ES modules

For full documentation and advanced usage, see the docs site or explore the Playground!