Installation Guide
Each component is crafted with precision to ensure accessibility and ease of use, allowing you to enhance your application's interface with minimal effort.
Download
Nexus-UI is available on npm.
Using npm
npm install @tony9090/nexus-ui
Using yarn
yarn add @tony9090/nexus-ui
Using pnpm
pnpm add @tony9090/nexus-ui
Import
Each component can be imported individually so that you only bundle what you use. Import paths are available in the documentation of the corresponding component.
import { Button } from '@tony9090/nexus-ui';
export default function MyComponent() {
return <Button label="Nexus" />;
}