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

zathura-react-design-system

v0.1.3

Published

A modern React component library built with Tailwind CSS, and TypeScript

Readme

React Design System

A comprehensive, production-ready React component library built with TypeScript and Tailwind CSS. Designed for modern web applications with a focus on accessibility, performance, and developer experience.

npm version License: CC BY-NC 4.0

✨ Features

  • 🎨 16+ Production-Ready Components - Comprehensive component library
  • 📘 TypeScript First - Full type safety and IntelliSense support
  • 🎭 Storybook Documentation - Interactive component playground
  • 🎯 Tailwind CSS - Utility-first styling with customization

📦 Installation

npm install @zathura-db/react-design-system
yarn add @zathura-db/react-design-system
pnpm add @zathura-db/react-design-system

Tailwind CSS Setup

If using Tailwind CSS, add the package to your tailwind.config.js:

module.exports = {
  content: [
    "./src/**/*.{js,ts,jsx,tsx}",
    "./node_modules/@zathura-db/react-design-system/**/*.{js,ts,jsx,tsx}",
  ],
  // ...rest of your config
};

🚀 Quick Start

import { Button } from "@zathura-db/react-design-system";

function App() {
  return (
    <div>
      <Button baseColour="orange" buttonSize="large" onClick={() => alert("Clicked!")}>
        Click Me
      </Button>
  );
}

For implementation examples, please see Zathura React Design System Github each component has stories which outline its usage.

📚 Components

Layout

  • Footer - Customizable page footer
  • Section - Page section wrapper with styling options

Interactive Elements

  • Button - Multiple variants and sizes with loading states
  • LinkText - Styled link component with Next.js support
  • DropDown - Accessible dropdown menu
  • DirectionButtons - Navigation direction controls
  • Pagination - Customizable pagination controls

Content Display

  • InformationCard - Card components for displaying information
  • ProjectTile - Project display tiles with hover effects
  • Timeline - Vertical/horizontal timeline component
  • Carousel - Image/content carousel with controls
  • Chart - Data visualization charts (powered by Chart.js)

Visual Effects

  • AnimatedText - Text animation effects
  • StarBackground - Animated particle background

🔧 Development

Clone and Install

git clone https://github.com/zathura-db/react-design-system.git
cd react-design-system
npm install

Available Scripts

# Start Storybook development server
npm run storybook

# Build Storybook static site
npm run build-storybook

# Build the package
npm run build

# Lint code
npm run lint

🛠️ Tech Stack

  • React 18 - Modern React with hooks
  • TypeScript - Static type checking
  • Tailwind CSS - Utility-first CSS framework
  • Storybook 10 - Component documentation

📄 License

This project is licensed under the Creative Commons Attribution-NonCommercial 4.0 International License.

Commercial Use: For commercial licensing options, please raise issue using github.

See licence.txt for the full license text.

🤝 Contributing

We welcome contributions! Please follow these steps:

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/amazing-feature
  3. Make your changes and add tests
  4. Commit your changes: git commit -m 'Add amazing feature'
  5. Push to the branch: git push origin feature/amazing-feature
  6. Open a Pull Request

Note: Direct pushes to the master branch are restricted. All contributions must be made through pull requests.

🐛 Bug Reports

Found a bug? Please open an issue with:

  • Description of the bug
  • Steps to reproduce
  • Expected behavior
  • Screenshots (if applicable)
  • Environment details (OS, browser, Node version)