@mvn-ui/react
v0.1.5
Published
A React UI component library based on shadcn/ui
Downloads
325
Readme
@mvn-ui/react
A React UI component library based on shadcn/ui, tailored for Marusys projects.
Repository: https://github.com/Humax-Viet-Nam/marusys-webkit-starter/tree/main/mvn-ui
Installation
npm install @mvn-ui/react
# or
yarn add @mvn-ui/react
# or
pnpm add @mvn-ui/reactUsage
Import styles in your root layout or entry file (e.g., src/index.tsx or src/app/layout.tsx):
import '@mvn-ui/react/styles.css';Import and use components:
import { Button } from '@mvn-ui/react';
function App() {
return (
<div>
<Button>Click me</Button>
</div>
);
}Features
- Built with React and TypeScript
- Styled with Tailwind CSS
- Accessible components via Radix UI
- Dark mode support (via
next-themesor custom provider)
License
MIT
