Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alwinsden/ananya-ui

Focused, clean UI.
https://github.com/alwinsden/ananya-ui

Last synced: about 1 month ago
JSON representation

Focused, clean UI.

Awesome Lists containing this project

README

        

# Ananya UI

**NPM registry:** https://www.npmjs.com/package/@alwinsden/ananya-ui

**GitHub:** https://github.com/alwinsDen/ananya-ui

## Installation and usage

#### Add the library to project
```shell
npm i @alwinsden/ananya-ui
```
#### Import the CSS properties in root file [index.tsx]
```shell
import "@alwinsden/ananya-ui/dist/style.css"
```

#### Adding a default button from library
```javascript
import {AnUIDefaultButton} from "@alwinsden/ananya-ui";
import './App.css';
function App() {
return (

Click me.

);
}
export default App;

```

## Contributing

#### Clone the repository
```shell
git clone [email protected]:alwinsDen/ananya-ui.git
```

#### Install required dependencies
```shell
npm install
```

#### Create a usable build of the library
```shell
npm run build
```

#### Code reformatting
```shell
prettier . --write
```