Command Palette
Search for a command to run...
Installation
Start building with @nipsys/lsd. Installation guide for adding LSD to your project.Getting Started
These are the tools you need to join in:- Node.js 24 or higher
- A React 19 project or higher
Install the package
Use your preferred package manager:npm add @nipsys/lsdImport the styles
Import the styles, either in CSS or JS/TS:@import "@nipsys/lsd/css";Use components
Now that you've installed LSD, you can start using components:import { Button } from '@nipsys/lsd'
export default function Home() {
return (
<div>
<Button>Click me</Button>
</div>
)
}