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
- Host: GitHub
- URL: https://github.com/devbyray/future-ui
- Owner: devbyray
- License: mit
- Created: 2023-11-20T15:49:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-29T15:55:37.000Z (over 1 year ago)
- Last Synced: 2025-03-18T02:44:52.488Z (2 months ago)
- Topics: headless, headlessui, webcomponent, webcomponents, webcomponents-framework, webcomponents-ui
- Language: TypeScript
- Homepage: https://future-ui-core.vercel.app/
- Size: 1.72 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# @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).