An open API service indexing awesome lists of open source software.

https://github.com/devbyray/future-ui

Future UI Core is a Web Component library
https://github.com/devbyray/future-ui

headless headlessui webcomponent webcomponents webcomponents-framework webcomponents-ui

Last synced: about 2 months ago
JSON representation

Future UI Core is a Web Component library

Awesome Lists containing this project

README

        

![](./futureui-icon.png)

# @futureui/core

Future UI Core is a Web Component library. We focus on:
- Un-styled web components
- Accessible web components
- Extendable web components
- Minimal to no dependencies

## Installation

```bash
npm install @futureui/core
```
or

```bash
yarn add @futureui/core
```

## Usage

For example, if you want to use the accordion component. Import it in your JavaScript or TypeScript.
```ts
import '@futureui/core-ui/accordion';
```

After that you can use the component like this:

```html


Accordion Header 1


Accordion Content 1


Accordion Header 2


Accordion Content 2


Accordion Header 3


Accordion Content 3


Accordion Header 4


Accordion Content 4


```

## Components

- **Accordion**: [documentation](https://future-ui-core.vercel.app/?path=/docs/core-accordion--documentation).
- More to come 👍

## How To's
If you want to read more on how to use or extend our components, please check out the [documentation section](./docs/index.md).