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

@halvaradop/ui-card

v1.0.0

Published

A customizable Card component for @halvaradop/ui library with Tailwind CSS styling.

Readme

@halvaradop/ui-card

@halvaradop/ui-card is an accessible, reusable, and customizable Card component from the @halvaradop/ui React library. Built with React and styled using TailwindCSS v4, it provides pre-styled components to accelerate UI development.

Installation

npm install @halvaradop/ui-card
yarn add @halvaradop/ui-card
pnpm add @halvaradop/ui-card

Usage

The Card component offers several additional props for customization. Import the Card component as shown below:

import { Card } from "@halvaradop/ui-card"
import { Button } from "@halvaradop/ui-button"

export default function App() {
  return (
    <Card variant="shadow" size="md" className="p-6">
      <h2 className="text-lg font-semibold mb-2">Welcome!</h2>
      <p className="mb-4 text-muted">
        This is an example of the <code>Card</code> component. You can customize its appearance using props and
        TailwindCSS classes.
      </p>
      <Button variant="primary">Get Started</Button>
    </Card>
  )
}

Advanced Usage

Card uses the Slot component from @halvaradop/ui-slot, allowing you to render a different HTML tag by setting the asChild prop:

import { Card } from "@halvaradop/ui-card"
import { Link } from "react-router-dom|next/link"

export default function CardLinkExample() {
  return (
    <Card asChild>
      <Link to="/dashboard" className="block hover:shadow-lg transition-shadow">
        <h3 className="text-lg font-bold mb-2">Go to Dashboard</h3>
        <p className="text-muted">Click to navigate to your dashboard.</p>
      </Link>
    </Card>
  )
}

Prop Reference

| Prop | Accepted Values | Default | Description | | --------- | -------------------------------- | -------- | ---------------------------------------------------------------------------------- | | variant | "base" \| "outline" | "base" | Defines the visual style - base has background, outline is transparent with border | | size | "sm" \| "base" \| "md" \| "lg" | "base" | Controls the padding and shadow size of the card | | asChild | true \| false | false | Renders the card as a different HTML element while keeping the styling |

Styling

The component supports TailwindCSS v4. To customize colors, use the following CSS variables. For the full theme, see the theme file.

@import "tailwindcss";

@theme {
  --breakpoint-base: 900px;
  --opacity-cursor: 80%;

  --color-border: oklch(70% 0.02 260);

  --color-surface: oklch(98% 0 0);
  --color-on-surface: oklch(20% 0.02 260);

  --color-ghost: oklch(94% 0.01 260);
}

Dark Theme Support

The library currently supports only a dark theme. To enable it, update the CSS variables as follows:

:is(html, body).dark {
  --color-border: oklch(35% 0.01 260);

  --color-surface: oklch(15% 0.005 260);
  --color-on-surface: oklch(95% 0.01 260);
}

About

This component is part of the @halvaradop/ui library, a collection of production-ready React components built with TypeScript and React, and styled using Tailwind CSS and Class Variance Authority (CVA). Designed for modern web applications, it aims to deliver accessible, customizable, and maintainable UI building blocks to accelerate your development workflow.

License

This project is licensed under the MIT License. For full details, see the LICENSE file.

Contributing

We welcome and appreciate contributions to the @halvaradop/ui library!

To get started, please read our Contributing Guide. All contributors are expected to follow our Code of Conduct.


Made with ❤️ by the @halvaradop/ui team.