🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

aniq-ui

Package Overview
Dependencies
Maintainers
0
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

aniq-ui

Aniq UI – The Ultimate Dark-Themed UI Library for React & Next.js

0.1.0-beta.7
unpublished
latest
Source
npm
Version published
Weekly downloads
0
Maintainers
0
Weekly downloads
 
Created
Source

Aniq UI

The Ultimate Dark-Themed UI Library for React & Next.js

Installation

npm install aniq-ui
# or
yarn add aniq-ui

Setup

No additional configuration required! Aniq UI components come with their styles included.

Usage with Tailwind CSS v4

This library is compatible with Tailwind CSS v4 but doesn't require it to be installed in your project. If you're using Tailwind CSS already, our components will integrate seamlessly with your design system.

import { Button } from 'aniq-ui';

export default function MyComponent() {
  return (
    <Button variant="primary">Click me</Button>
  );
}

Dark Mode Support

Aniq UI components automatically support dark mode. Just add the dark class to any parent element to enable dark mode styles:

<div className="dark">
  <Button variant="primary">Dark Mode Button</Button>
</div>

Component Styling

Components are styled using CSS Modules with Tailwind's @apply directives, making it easy to maintain and update styles while leveraging Tailwind's utility classes.

Available Components

Button

import { Button } from 'aniq-ui';

// Available variants: 'default', 'primary', 'destructive', 'outline', 'ghost'
// Available sizes: 'default', 'sm', 'lg', 'icon'

<Button 
  variant="primary"
  size="default"
  leftIcon={<IconComponent />} 
  rightIcon={<IconComponent />}
  onClick={() => alert('Clicked!')}
>
  Button Text
</Button>

Keywords

react

FAQs

Package last updated on 11 Mar 2025

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