Installation

Install SHIVMS UI

Add SHIVMS UI to your project and start building accessible, reusable, and production-ready interfaces in just a few minutes.

Requirements

1

Install the package

Install SHIVMS UI using your preferred package manager.

npm install @shivms/ui
2

Import styles

Import the default stylesheet once in your application.

import "@shivms/ui/styles.css";
3

Use your first component

Import a component and start building your UI.

import { Button } from "@shivms/ui";

export default function App() {
    return (
        <Button>
            Click Me
        </Button>
    );
}

Continue Reading

Explore more SHIVMS UI documentation and guides.