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 🙏

© 2024 – Pkg Stats / Ryan Hefner

tharikida-ui

v1.0.14

Published

A lightweight, customizable React UI component library designed for simplicity and flexibility.

Downloads

855

Readme

Tharikida UI 🚀🔥

A Naadan React Component Library for Building Fast and Fun UIs

Tharikida UI is a lightweight React component library packed with simplicity, style, and a touch of Kerala flair! Whether you're building personal projects or developing applications, Tharikida UI offers the perfect balance of performance and visual appeal.


Features

  • 🥥 Naadan Design: A clean, minimalistic design inspired by Kerala's vibrant yet simple aesthetic.
  • Fast and Lightweight: Optimized for performance with minimal dependencies.
  • 🛠️ Customizable: Easy-to-use components with built-in theming support.
  • 🌴 Ready to Use: A growing list of pre-built, accessible components to enhance your UI.

Installation

You can easily add Tharikida UI to your React project via npm or yarn:

Using npm:

npm install tharikida-ui

Usage:

Once installed, you can start using Tharikida UI components in your React project.

Example:

import React from 'react';
import { Button, Modal } from 'tharikida-ui';

const App = () => {
  const [isModalOpen, setIsModalOpen] = React.useState(false);

  return (
    <div>
      <h1>Welcome to Tharikida UI!</h1>
      <Button onClick={() => setIsModalOpen(true)} type="primary">
        Open Modal
      </Button>

      <Modal isOpen={isModalOpen} onClose={() => setIsModalOpen(false)}>
        <h2>Tharikida Modal</h2>
        <p>This is a simple modal from Tharikida UI!</p>
      </Modal>
    </div>
  );
};

export default App;

Components:

Tharikida UI includes the following components:

Button: Customizable buttons with various styles. Modal: Simple modal component for dialogs and pop-ups. Input: Standard input fields (text, select, checkbox, radio). Card: Display cards with customizable content. Alert: Show alerts for notifications and warnings. Progress Bar: Indicate progress of tasks with a sleek bar. Spinner: Visual loader to show waiting states. Badge: Display badges for status, counts, or tags. Customization Tharikida UI is built to be flexible! You can easily customize the look and feel of components through props and CSS overrides.

Here’s an example of customizing the primary button color:

<Button style={{ backgroundColor: '#F1C40F' }} type="primary">
  Custom Button
</Button>

For more advanced theming and customization options, refer to the documentation.