Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mielo-ui/mielo-react
Mielo UI - React components
https://github.com/mielo-ui/mielo-react
components components-library react ui
Last synced: 4 months ago
JSON representation
Mielo UI - React components
- Host: GitHub
- URL: https://github.com/mielo-ui/mielo-react
- Owner: mielo-ui
- License: mit
- Created: 2024-07-18T17:01:22.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-09-05T22:23:07.000Z (5 months ago)
- Last Synced: 2024-10-13T14:29:06.741Z (4 months ago)
- Topics: components, components-library, react, ui
- Language: TypeScript
- Homepage: https://mielo-ui.github.io/
- Size: 449 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Mielo React
React components & wrappers around mielo.css framework.![logo](https://raw.githubusercontent.com/mielo-ui/mielo.css/main/logo.png)
![preview](https://raw.githubusercontent.com/mielo-ui/mielo.css/main/media/preview.webp)
![dark](https://raw.githubusercontent.com/mielo-ui/mielo.css/main/media/Mielo.Dark.png)
## Quick install
Mielo is constantly in development! Try it out now:
### NPM
```sh
npm install @mielo-ui/mielo @mielo-ui/mielo-react
```**or**
### Yarn
```sh
npm install @mielo-ui/mielo @mielo-ui/mielo-react
```### Import
After installation, you can import the CSS file into your project using this snippet:
```sh
@import 'mielo/css/mielo.css'
```And usage react components like
``` typescript
import * as Mie from "@mielo-ui/mielo-react"```
## Browser Support
Mielo is compatible with **recent** versions of:
- Chrome
- Edge
- Firefox
- Opera
- SafariInternet Explorer is not supported.
## Documentation
Browse the [online documentation here.](https://mielo-ui.github.io/)# Development
For build library from source:``` sh
git clone https://github.com/mielo-ui/mielo-react
cd mielo-reactnpm install # or "yarn"
npm run fmt # format & linting components
npm build # build module library with .d.ts
```