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

react-n-design

v1.3.0

Published

react-n-design: A modern, lightweight, and animated modern React component library.

Readme


Installation

Zero-config. One command. Works out of the box.

npm install react-n-design
# or
yarn add react-n-design
# or
pnpm add react-n-design

No extra setup, no Tailwind config, no CSS imports needed. Just install and import.

Peer dependencies required:

| Package | Version | | --- | --- | | react | >=18.0.0 | | react-dom | >=18.0.0 |


Features

| Feature | Description | | --- | --- | || 🎨 Neomorphic Design | Soft UI with realistic shadows, light diffusion, and tactile depth. No flat boredom. | || 🤖 AI-Native Components | Drop-in AIChat, CommandPalette, and Markdown renderers for LLM-powered apps. | || ⚡ Zero-Config Install | No build plugins, no CSS resets, no global style leakage. It just works. | || ⚙️ RSC-Ready | Dual entry point (react-n-design and react-n-design/rsc) for Next.js App Router compatibility. | || ♿ Accessibility First | axe-core validated, ARIA compliant, keyboard navigable, screen-reader friendly. | || 🔥 Styled-Components | No runtime CSS injection conflicts. Zero-runtime CSS variable fallbacks available. | ||| 📦 Tree Shakable | sideEffects: false ensures modern bundlers drop everything you do not use. | ||| 89 Components | Complete library with Form, Tour, Steps, Timeline, Stepper, Empty, FloatButton | || Full TypeScript | Strict mode, complete type declarations | || Tree Shakable | sideEffects: false for optimal bundling | || Battle Tested | 348+ tests across Vitest + axe-core | || RSC Ready | Dual entry point for Server Components |


Why react-n-design?

| | react-n-design | shadcn/ui | MUI | Ant Design | | --- | :---: | :---: | :---: | :---: | | Neomorphic UI | :white_check_mark: | :x: | :x: | :x: | | Zero-config install | :white_check_mark: | :x: (copy-paste) | :x: (theme setup) | :x: (CSS import) | | AI-native components | :white_check_mark: | :x: | :x: | :x: | | RSC / Next.js App Router | :white_check_mark: | :white_check_mark: | :x: | :x: | | No Tailwind dependency | :white_check_mark: | :x: | :white_check_mark: | :white_check_mark: | | Runtime bundle size | Small | Minimal* | Large | Large | | Accessibility (axe-core) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | | TypeScript | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |

*shadcn/ui is a collection of copy-paste components, so it ships no runtime itself. react-n-design ships a polished, maintained runtime with CLI scaffolding and design cohesion out of the box.


Quick Start

Option A — Built-in theme context (recommended)

The ThemeContextProvider handles theme state and injects the theme into styled-components automatically. Use useThemeContext to read or toggle the active theme.

import React from 'react';
import {
  ThemeContextProvider,
  useThemeContext,
  Button,
  Switch,
} from 'react-n-design';

function ThemeToggle() {
  const { theme, toggleTheme } = useThemeContext();

  return (
    <Switch
      checked={theme === 'dark'}
      onChange={() => toggleTheme()}
      label={theme === 'dark' ? 'Dark Mode' : 'Light Mode'}
    />
  );
}

function App() {
  return (
    <ThemeContextProvider>
      <ThemeToggle />
      <Button variant="primary">Hello World</Button>
    </ThemeContextProvider>
  );
}

export default App;

Option B — Manual styled-components ThemeProvider

If you already have a ThemeProvider in your app, pass one of the built-in themes directly:

import React from 'react';
import { ThemeProvider } from 'styled-components';
import { lightTheme, Button } from 'react-n-design';

function App() {
  return (
    <ThemeProvider theme={lightTheme}>
      <Button variant="primary">Click me</Button>
    </ThemeProvider>
  );
}

export default App;

Key Components

Button

A tactile, Neomorphic button with multiple variants and full keyboard support.

import { Button } from 'react-n-design';

<Button variant="primary" size="medium">
  Get Started
</Button>

<Button variant="secondary" size="small" disabled>
  Loading...
</Button>

AIChat

Drop-in chat interface for AI conversations. Supports markdown rendering, typing indicators, auto-scroll, copy-to-clipboard, and ARIA live regions.

import { AIChat } from 'react-n-design';

function ChatPage() {
  const [messages, setMessages] = useState([
    { role: 'assistant', content: 'Hello! How can I help you today?' },
  ]);
  const [isLoading, setIsLoading] = useState(false);

  const handleSend = async (text: string) => {
    setMessages((prev) => [...prev, { role: 'user', content: text }]);
    setIsLoading(true);
    const reply = await fetchReply(text);
    setMessages((prev) => [...prev, { role: 'assistant', content: reply }]);
    setIsLoading(false);
  };

  return (
    <AIChat
      messages={messages}
      onSend={handleSend}
      isLoading={isLoading}
      placeholder="Ask anything..."
    />
  );
}

CommandPalette

A Cmd+K spotlight-style command palette with fuzzy search, keyboard navigation, and accessible focus management.

import { CommandPalette } from 'react-n-design';
import { useState, useEffect } from 'react';

function App() {
  const [open, setOpen] = useState(false);

  useEffect(() => {
    const handleKeyDown = (e: KeyboardEvent) => {
      if ((e.metaKey || e.ctrlKey) && e.key === 'k') {
        e.preventDefault();
        setOpen((prev) => !prev);
      }
    };
    document.addEventListener('keydown', handleKeyDown);
    return () => document.removeEventListener('keydown', handleKeyDown);
  }, []);

  const items = [
    { id: 'home', label: 'Go to Home', shortcut: 'G H', onSelect: () => navigate('/') },
    { id: 'settings', label: 'Open Settings', shortcut: 'G S', onSelect: () => navigate('/settings') },
    { id: 'logout', label: 'Log Out', onSelect: () => logout() },
  ];

  return (
    <CommandPalette
      open={open}
      onClose={() => setOpen(false)}
      items={items}
      placeholder="Search commands..."
    />
  );
}

React Server Components

react-n-design provides a dual entry point for compatibility with React Server Components (RSC):

  • Client components (default entry): import { Button, Modal } from 'react-n-design'
    • Includes interactive and animated components that require a client environment.
  • Server-safe exports (RSC entry): import { Badge, Divider, Skeleton } from 'react-n-design/rsc'
    • Includes only components that can safely render in a server context (no 'use client' directive).

Use the /rsc entry when you need to import components inside Server Components without adding a "use client" boundary.

// In a Server Component (e.g., Next.js App Router)
import { Badge, Divider, Skeleton } from 'react-n-design/rsc';

export default function Page() {
  return (
    <div>
      <h1>Server-rendered content</h1>
      <Badge status="success">Live</Badge>
      <Divider />
      <Skeleton rows={3} />
    </div>
  );
}

Theming

The library ships with lightTheme and darkTheme out of the box. Both are typed against the Theme type so your editor will autocomplete all tokens.

import { lightTheme, darkTheme, Theme } from 'react-n-design';

// Create a custom theme
const customTheme: Theme = {
  name: 'custom',
  borderRadius: '8px',
  colors: {
    primary: '#0070f3',
    background: '#fafafa',
    white: '#ffffff',
    text: '#333333',
    shadowDark: '#d0d0d0',
    shadowLight: '#ffffff',
    hoverBg: '#e8e8e8',
    skeletonBg: '#e0e0e0',
    knobBg: '#f5f5f5',
    cardBg: '#f0f0f0',
  },
  shadows: {
    soft: '7px 7px 14px #d0d0d0, -7px -7px 14px #ffffff',
    softInset: 'inset 7px 7px 14px #d0d0d0, inset -7px -7px 14px #ffffff',
  },
};

Form Validation

Built-in support for schema-based validation and popular form libraries.

Zod Schema Validation

Pass a Zod schema to the Form component for automatic validation and error messaging:

import { Form } from 'react-n-design';
import { z } from 'zod';

const schema = z.object({
  email: z.string().email(),
  password: z.string().min(8),
});

<Form zodSchema={schema} onSubmit={(data) => console.log(data)}>
  <Form.Input name="email" label="Email" />
  <Form.Input name="password" label="Password" type="password" />
  <Button type="submit">Submit</Button>
</Form>

React Hook Form Adapter

Use the withReactHookForm adapter to plug react-n-design components into React Hook Form:

import { withReactHookForm } from 'react-n-design';
import { useForm } from 'react-hook-form';

const { Input, Select } = withReactHookForm();

function MyForm() {
  const { control, handleSubmit } = useForm();

  return (
    <form onSubmit={handleSubmit(onSubmit)}>
      <Input name="username" control={control} />
      <Select name="role" control={control} options={roles} />
    </form>
  );
}

Glassmorphism & Visual Effects

Add modern glass-like depth and animated borders to your UI.

Glassmorphism Variants

Card, Modal, and Drawer support a variant="glass" prop for frosted-glass aesthetics:

<Card variant="glass">
  <Typography.Text>See-through elegance</Typography.Text>
</Card>

<Modal variant="glass" open={isOpen} onClose={handleClose}>
  <p>Glassmorphic dialog</p>
</Modal>

GradientBorder

An animated conic-gradient border for eye-catching highlights:

import { GradientBorder } from 'react-n-design';

<GradientBorder>
  <Card>Highlighted content</Card>
</GradientBorder>

Enhanced Dark Mode

The built-in darkTheme now uses deep space blues (#0f172a) for a richer, more immersive night-time experience.


Components

General

| Component | Description | | --- | --- | | Button | Customizable button with multiple variants and states | | Card | Neomorphic container for grouping content | | Icon | Wrapper for react-icons with consistent sizing and color | | Tag | Small label for keywords or categories | | Badge | Status indicators and count badges | | Avatar | User avatar with image fallback and grouping | | Skeleton | Placeholder preview while content loads | | VisuallyHidden | Hides content visually but keeps it accessible to screen readers | | SkipToContent | Accessibility link to skip to main content | | Toast | Notification system with positions and promise support | | Divider | Horizontal or vertical separator line |

Layout

| Component | Description | | --- | --- | | Stack | Flexbox-based vertical/horizontal layout with gap support | | Grid | CSS Grid layout wrapper with responsive props | | Drawer | Slide-over panel with focus trap and scroll lock | | Modal | Dialog window that appears over the main content | | Tooltip | Small pop-up label with multiple triggers and positions | | Resizable | Resizable panel containers | | FloatButton | Floating action button | | AppBar | Application header/navigation bar | | ScrollArea | Custom scrollbar container | | VirtualList | Virtualized list for large datasets | | KanbanBoard | Task board with columns and reordering | | ImageGallery | Masonry grid with lightbox and lazy loading |

Navigation

| Component | Description | | --- | --- | | Tabs | Organizes content into switchable views | | Accordion | Vertically stacked, collapsible panels | | Breadcrumbs | Navigation path with ARIA support | | Menu | Dropdown menu with keyboard navigation | | Carousel | Touch-friendly image/content slider | | Stepper | Multi-step wizard with navigation | | Steps | Horizontal step indicator | | Timeline | Vertical timeline with events | | Tree | Hierarchical tree view with expand/collapse | | Tour | Onboarding tour with spotlight | | Pagination | Page navigation with jump controls | | Popover | Floating content panel with trigger | | Collapsible | Expand/collapse content section |

Forms

| Component | Description | | --- | --- | | Input | Advanced input with icons, addons, and validation states | | Select | Feature-rich dropdown for single and multiple selections | | Switch | Animated toggle for boolean states | | Slider | Range input with keyboard and touch support | | ComboBox | Autocomplete with filtering, multi-select, and async loading | | DatePicker | Single/range date selection with keyboard navigation | | ColorPicker | Color selection with preset swatches and custom input | | FileUpload | Drag-and-drop file upload with image previews, progress, and validation | | MultiSelect | Multiple selection dropdown with chips and search | | Form | Form state management with validation |

Input

| Component | Description | | --- | --- | | OTPInput / PinInput | One-time password digit input | | RichTextEditor | Basic rich text editor with formatting toolbar |

Data Display

| Component | Description | | --- | --- | | Table | Data table with sorting and pagination | | DataGrid | Virtualized table with sorting, filtering, and pagination | | Alert | Contextual feedback messages | | ProgressBar | Visual indicator for task completion | | Typography | Text primitives: Text, Title, and Paragraph | | Empty | Empty state placeholder | | Result | Result page with status | | Statistic | Statistic value display | | Rating | Star rating component | | Segmented | Segmented control | | Charts | Chart components with Recharts integration | | HeatmapCalendar | GitHub-style contribution calendar | | GanttChart | Project timeline chart |

Visualization

| Component | Description | | --- | --- | | OrgChart | Hierarchical tree diagram | | Terminal | Styled shell output for AI code execution | | AudioWaveform | Voice input/output visualization | | GradientBorder | Animated conic-gradient border component |

AI & Productivity

| Component | Description | | --- | --- | | AIChat | Full chat interface with markdown, typing indicators, and copy actions | | AIThinking | AI thinking state indicator | | CommandPalette | Spotlight-style Cmd+K search with fuzzy matching and keyboard nav | | Markdown | Secure markdown renderer for assistant messages and docs | | Calendar | Interactive date grid with selection modes and keyboard nav | | CodeBlock | Syntax-highlighted code display with copy button | | PromptInput | Rich prompt input with history | | SuggestionChips | AI suggestion chips | | Checkbox | Checkbox with indeterminate state | | RadioGroup | Radio button group | | Toggle | Simple toggle switch | | StreamingText | Typewriter effect with Markdown rendering | | ThinkingBlock | Collapsible LLM reasoning chain visualization | | ToolCallCard | AI tool call loading/success/error states | | PromptBuilder | Few-shot prompt editor with variable highlighting | | ModelSelector | AI model dropdown with context window, pricing, latency | | DiffViewer | Side-by-side or inline diff for code/document comparison | | MentionInput | @ mention support for users/documents/agents |


Tree Shaking

sideEffects: false is set in package.json, so modern bundlers (webpack, Vite, Rollup) will automatically remove any components you do not import.

// Only Button and Input end up in your bundle
import { Button, Input } from 'react-n-design';

Testing

The library is tested with Vitest and React Testing Library. Every component is run against axe-core for accessibility violations.

# Run the full test suite (Vitest)
npm run test:vitest

# Run in watch mode  
npm run test:vitest:watch

CLI

A small CLI is included to scaffold new components into your project:

# Initialize react-n-design in your project (sets up config and theme)
npx react-n-design init

# Add a component to your project (copies source to your local codebase)
npx react-n-design add <ComponentName>

# Example
npx react-n-design add Button

Development

# Clone the repository
git clone https://github.com/SoumyoNawab8/react-n-design.git

# Install dependencies
npm install --legacy-peer-deps

# Start the documentation site for development
npm run dev

# Build the library
npm run build

# Build the documentation site for static deployment
npm run build:site

Contributing

We love contributions. Here is how to get started:

  1. Fork the project
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'feat: add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Please make sure your code passes the existing test suite and includes axe-core accessibility coverage where applicable.


Issues & Feature Requests

Found a bug or have a feature request? Please open an issue on our GitHub repository.


License

MIT © SoumyoNawab8