Skip to content
Auto

Installation

You can install AetherUI using your preferred package manager:

Terminal window
pnpm add @aetherui-kit/core

After installation, import and define the components you want to use:

import { defineAeButton } from '@aetherui-kit/core';
// Define the component
defineAeButton();
// Use it in your HTML
<ae-button>Click me!</ae-button>

Import the default theme CSS file:

import '@aetherui-kit/tokens/light.css';
// Or for dark theme
import '@aetherui-kit/tokens/dark.css';