0.1.7 • Published 7 months ago

@neu-ui/web-components v0.1.7

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

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

npm i @neu-ui/web-components

Usage

Importing the Entire Library To use all components from the Neu-UI library, import the entire library:

<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:

<script type="module">
  import { Button } from '@neu-ui/web-components/components/button';
</script>

<neu-button>Neu-UI</neu-button>