1.0.3 • Published 5 months ago
react-ui-kid v1.0.3
Nika UI
A customizable React UI kit with high-quality components.
Features
- 20+ Advanced Components: Built with React and TypeScript.
- Fully Customizable: Default and custom color schemes via a ThemeProvider.
- Accessible & Flexible: Components include relevant HTML attributes.
- CSS-based Styling: Quick theme changes and easy style overrides.
- Easy Integration: Seamlessly integrate into your React projects.
Installation
Install Nika UI using npm or yarn:
npm install nika-ui
# or
yarn add nika-ui
If you are using a React + Vite Project
vite.config.js :
import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react';
export default defineConfig({ plugins: react(), resolve: { // This tells Vite to use the project's own copy of React even if a dependency has its own version. dedupe: 'react', 'react-dom' } });