https://github.com/leon-ai/aurora
🎨 Aurora - The UI bricks that power up Leon
https://github.com/leon-ai/aurora
Last synced: 8 months ago
JSON representation
🎨 Aurora - The UI bricks that power up Leon
- Host: GitHub
- URL: https://github.com/leon-ai/aurora
- Owner: leon-ai
- License: mit
- Created: 2023-11-19T11:03:18.000Z (about 2 years ago)
- Default Branch: develop
- Last Pushed: 2025-04-22T00:32:37.000Z (9 months ago)
- Last Synced: 2025-05-12T22:19:32.272Z (8 months ago)
- Language: TypeScript
- Homepage: https://aurora.getleon.ai/components
- Size: 763 KB
- Stars: 7
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
@leon-ai/aurora -
_
The UI bricks that power up Leon.
_
---
## Installation
```sh
# Install Peer Dependencies
npm install react@^18.2.0 react-dom@^18.2.0 remixicon@^3.4.0 @fontsource/source-sans-pro@^5.0.8
# Install Aurora
npm install @leon-ai/aurora
```
## Usage
```tsx
// Fonts & Icons
import '@fontsource/source-sans-pro/200.css'
import '@fontsource/source-sans-pro/300.css'
import '@fontsource/source-sans-pro/400.css'
import '@fontsource/source-sans-pro/600.css'
import '@fontsource/source-sans-pro/700.css'
import '@fontsource/source-sans-pro/900.css'
import 'remixicon/fonts/remixicon.css'
import '@leon-ai/aurora/style.css'
import { WidgetWrapper, Button } from '@leon-ai/aurora'
export const Example: React.FC = () => {
return (
Send
)
}
```