Installation
PIXUI is a modern, lightweight React component library designed to help developers build beautiful and responsive web applications quickly. This guide walks you through installing PIXUI in your project using npm, yarn or pnpm.
To install PIXUI using npm, open your terminal and run the following command:
Terminal
npm install pixui-react@latest
If you prefer using yarn, execute the following command in your terminal:
Terminal
yarn add pixui-react@latest
For pnpm users, install PIXUI with the following command:
Terminal
pnpm add pixui-react@latest
Once installed, you can start importing and using PIXUI components in your React and Next.js application.
Example Usage
1import { Button } from "pixui-react";23export default function MyComponent() {4 return <Button>Click me</Button>;5}
For more detailed documentation, visit our Getting Started Guide.