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.1

Published

A React design system with Tailwind CSS components

Readme

@zathura/react-design-system

A React component library built with TypeScript and Tailwind CSS, providing a rich set of themed, interactive UI components.

License: CC-BY-NC-4.0 npm

Author: Daniel Barrow · Repository: zathura-db/zathura-design-system


Components

| Component | Description | | ----------------------- | --------------------------------------------------------------------------- | | AnimatedText | Typing-effect animated text with optional prefix | | Button | Multi-variant button with theme colours and hover effects | | Carousel | Infinite-loop 3-card carousel with auto-rotate support | | Chart | Horizontal skill bar chart | | DirectionButtons | Previous/Next navigation arrow buttons | | DropDown | Collapsible dropdown with animated open/close | | Footer | Simple footer with LinkedIn icon | | InformationCard | Project card with image, description, and action buttons | | HiddenInformationCard | SEO-only hidden card (for carousel use) | | LinkText | Themed anchor/link component | | Navigation | Sticky top navigation bar | | Pagination | Auto-generated scroll-based dot pagination | | ProjectTile | Responsive project showcase tile (mobile card / desktop hover overlay) | | Section | Section wrapper with heading, underline, colour themes, and chevron variant | | StarBackground | Animated parallax starfield background | | Timeline | Vertical work history timeline with collapsible project details |


Installation

npm install @zathura/react-design-system

Peer dependencies – install if not already present:

npm install react react-dom

Requires React 17 or later.


Usage

1. Import the stylesheet

Add the stylesheet once at the root of your application (e.g. main.tsx / _app.tsx):

import "@zathura/react-design-system/styles.css";

2. Import components

import { Section, Timeline } from "@zathura/react-design-system";

export default function App() {
  return (
    <Section sectionTitle="Experience" colour="black">
      <Timeline
        PrimaryColour="Orange"
        Timelines={[
          {
            JobTitle: "Software Engineer",
            companyName: "Acme Corp",
            startDate: "Jan 2023",
          },
        ]}
      />
    </Section>
  );
}

3. Tailwind CSS consumers

If your project uses Tailwind, extend the content paths in your tailwind.config.ts so the library's classes are not purged:

// tailwind.config.ts
export default {
  content: [
    "./src/**/*.{ts,tsx}",
    "./node_modules/@zathura/react-design-system/dist/**/*.{js,mjs}",
  ],
  // ...
};

Alternatively, import styles.css (which includes a pre-built Tailwind output with all library classes already included).


Component Props

Button

| Prop | Type | Default | | ------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- | | baseColour | "red" | "orange" | "blue" | "green" | "purple" | "black" | "orangeOutline" | "red" | | hoverStyle | "white" | "redOffset" | "orangeOffset" | "blueOffset" | "greenOffset" | "purpleOffset" | "blackOffset" | "orangeFill" | "orangeOutline" | "white" | | buttonSize | "small" | "large" | "large" | | display | "inline" | "block" | "inline" | | textColour | "white" | "white" |

Also accepts all native <button> HTML attributes.

Section

| Prop | Type | Default | | ------------------------- | ------------------------------------------------------------- | ---------- | | sectionTitle | string | — | | colour | "white" | "black" | "orange" | "blue" | "green" | "white" | | type | "normal" | "chevron" | "normal" | | disableHeading | boolean | false | | disableUnderline | boolean | false | | underlineColourOverride | string | — | | children | ReactNode | — |

Timeline

| Prop | Type | Default | | --------------- | ------------------------------------------------------------------------- | ------- | | Timelines | TimelineItem[] | — | | PrimaryColour | "Orange" | "Blue" | "Green" | "Red" | "Purple" | "Black" | — |

TimelineItem shape:

{
  JobTitle: string;
  companyName: string;
  startDate: string;
  endDate?: string;
  content?: string[];
  projects?: {
    ShortDescription: string;
    Description: string;
    BulletPoints?: string[];
  }[];
}

Theme Colours

| Token | Hex | | ---------------- | --------- | | themeBlack | #131A25 | | themeRed | #ED0101 | | themeRedOffset | #C70000 | | themeOrange | #ED7701 | | themeBlue | #0177ED | | themeGreen | #009500 | | themePurple | #7701ED |


Development

# Install dependencies
npm install

# Start Storybook
npm run storybook

# Build the library
npm run build

# Type-check
npm run type-check

License

CC-BY-NC-4.0 © Daniel Barrow