https://github.com/alwinsden/ananya-ui
Focused, clean UI.
https://github.com/alwinsden/ananya-ui
Last synced: 4 months 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-20T17:26:44.000Z (over 1 year ago)
- Last Synced: 2025-01-18T08:46:58.471Z (6 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
```