New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

another-react-tailwind-component-library

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

another-react-tailwind-component-library

A React component library built with Radix UI primitives and Tailwind CSS v4.

latest
npmnpm
Version
1.0.1
Version published
Weekly downloads
3
200%
Maintainers
1
Weekly downloads
 
Created
Source

React Tailwind Component Library

A React component library built with Radix UI primitives and Tailwind CSS v4.

Installation

npm install another-react-tailwind-component-library tailwindcss@^4.0.0

Setup

Import the reference theme into your CSS file:

/* app.css */
@import "tailwindcss";
@import "another-react-tailwind-component-library/theme.css";

Or copy the contents of theme.css and customize the CSS variables to match your design system.

Usage

import { Button, Card, Hero, Carousel } from 'another-react-tailwind-component-library';

function App() {
  return (
    <Button variant="primary" size="md">
      Click me
    </Button>
  );
}

Customizing the Theme

The theme.css file exports CSS variables using Tailwind CSS v4's @theme directive. You can override any of these variables in your own CSS:

@import "tailwindcss";
@import "another-react-tailwind-component-library/theme.css";

@theme {
  --color-primary: #your-primary-color;
  --color-primary-hover: #your-primary-hover-color;
}```

See `theme.css` for the full list of available CSS variables.

## Components

- **Button** - Primary, secondary, and ghost variants with multiple sizes
- **Card** - Flexible card with image, heading, text, and actions
- **Anchor** - Styled links with underline options and external link support
- **Container** - Responsive container with customizable max-width
- **Hero** - Hero sections with image positioning options
- **Carousel** - Content carousel with autoplay, dots, and arrow navigation
- **Accordion** - Collapsible content sections
- **Avatar** - User avatars with fallback support
- **Heading** - Typography component for headings
- **Text** - Typography component for body text
- **CheckboxField** - Checkbox input with label

## License

MIT

FAQs

Package last updated on 04 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts