
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
The Ultimate Dark-Themed UI Library for React & Next.js
npm install aniq-ui
# or
yarn add aniq-ui
No additional configuration required! Aniq UI components come with their styles included.
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>
);
}
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>
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.
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>
FAQs
Aniq UI – The Ultimate Dark-Themed UI Library for React & Next.js
The npm package aniq-ui receives a total of 0 weekly downloads. As such, aniq-ui popularity was classified as not popular.
We found that aniq-ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.