Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/alwinsden/ananya-ui
- Owner: alwinsDen
- License: mit
- Created: 2024-03-07T05:15:27.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-20T17:26:44.000Z (9 months ago)
- Last Synced: 2024-04-17T20:11:09.346Z (9 months ago)
- Language: TypeScript
- Homepage:
- Size: 72.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```