Getting Started

A quick tutorial to get you up and running with Apsara.

Apsara is a pre-styled component library that is designed to work out of the box with minimal configuration.

Installation

Getting up and running is quick and easy.

1. Install Apsara

Install Apsara from your command line.

npm install @raystack/apsara

2. Import the CSS file

Import the global CSS file at the root of your application.

import "@raystack/apsara/style.css";

3. Start building

You are now ready to use Apsara components.

import { Button } from "@raystack/apsara/v1";
 
<Button variant="solid" color="accent">
  Click here!
</Button>;

On this page