@neu-ui/web-components
Version:
A Neumorphic web component library built with @microsoft/fast-element and Vite using javascript
38 lines (23 loc) • 797 B
Markdown
# Neu-UI Web Components
Neu-UI is a Neumorphic web component library built with @microsoft/fast-element and Vite using javascript.
## Getting Started
To get started with Neu-UI, follow these steps:
## Installation
```bash
npm i @neu-ui/web-components
```
## Usage
**Importing the Entire Library** To use all components from the Neu-UI library, import the entire library:
```html
<script type="module">
import '@neu-ui/web-components'
</script>
<neu-button>Neu-UI</neu-button>
```
**Importing Individual Components** If you prefer to load only specific components, you can import them individually:
```html
<script type="module">
import { Button } from '@neu-ui/web-components/components/button';
</script>
<neu-button>Neu-UI</neu-button>
```