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

@altech-ui/react

v0.2.3

Published

Altech UI React component library

Downloads

94

Readme

@altech-ui/react

A modern React component library built for fast product teams.

Open Altech UI Docs

Altech UI provides production-ready UI primitives with:

  • simple APIs for daily use
  • multiple built-in style variants
  • easy Tailwind customization with className
  • TypeScript-first developer experience

Why Altech UI

Altech UI helps developers ship interfaces faster without losing design flexibility. Instead of rebuilding common components from scratch, teams can focus on product logic.

Advantages:

  • less boilerplate for common UI patterns
  • flexible styling via className overrides
  • TypeScript-first for stronger safety and DX
  • consistent design tokens and variant patterns
  • built-in micro-interactions for better UX
  • works well with modern Next.js and React apps

What You Get

  • 17 reusable components
  • variant-based styling system
  • support for size, state, and layout props on core components
  • accessibility-focused primitives powered by Radix UI
  • smooth motion defaults with reduced-motion support
  • tree-shakeable package output (esm + cjs + d.ts)

Best For

  • startup/product teams shipping fast
  • SaaS dashboards and internal tools
  • teams that use Tailwind and want a reusable design foundation

Installation

pnpm add @altech-ui/react

Usage

import "@altech-ui/react/styles.css";
import { Button, Card, CardContent, CardHeader, Input } from "@altech-ui/react";

export default function App() {
  return (
    <Card variant="elevated">
      <CardHeader>Sign in</CardHeader>
      <CardContent className="space-y-3">
        <Input label="Email" placeholder="[email protected]" variant="filled" />
        <Button variant="primary" fullWidth>
          Continue
        </Button>
      </CardContent>
    </Card>
  );
}

Button-only import:

import "@altech-ui/react/styles.css";
import { Button } from "@altech-ui/react/button";

Simple button API:

<Button>Save</Button>
<Button loading loadingText="Saving...">Save</Button>
<Button fullWidth startIcon={<PlusIcon />} endIcon={<ArrowRightIcon />}>
  Create project
</Button>

Component Philosophy

  • sensible defaults: components work with minimal props
  • scalable API: use variant, size, and state props for quick customization
  • escape hatch always available: use className for Tailwind-level control

Available Components

  • Alert
  • Avatar
  • Badge
  • Button
  • Card
  • Checkbox
  • Dropdown
  • Input
  • Layout (Box, Container, Flex, Grid, Stack)
  • Modal
  • Radio
  • Select
  • Switch
  • Table
  • Tabs
  • Textarea
  • Tooltip

Variants and Simplicity

Most components include 3 or more preset styles so developers can build polished UI with short code.

Example:

<Card variant="default" />
<Card variant="outline" />
<Card variant="elevated" />
<Card variant="gradient" />

<Input variant="default" />
<Input variant="filled" />
<Input variant="ghost" />
<Input variant="flushed" />

Notes

  • TypeScript-first
  • Supports className override
  • Uses class-variance-authority for variants
  • Uses clsx + tailwind-merge via cn()
  • Works well with Next.js App Router

Peer Dependencies

  • react ^19.0.0
  • react-dom ^19.0.0

License

MIT

Links

  • Repository: https://github.com/Luxxn12/altech-ui
  • Issues: https://github.com/Luxxn12/altech-ui/issues