@fuentis/phoenix-ui 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # Phoenix UI Library
2
+
3
+ A lightweight UI component library for fuentis Angular applications.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @fuentis/phoenix-ui
9
+ ```
10
+
11
+ ## Features
12
+
13
+ - 🚀 Modern, responsive components
14
+ - ♿ Accessible components
15
+
16
+ ## Usage
17
+
18
+ Import the components you need:
19
+
20
+ ```typescript
21
+ import { SidebarLayoutComponent } from '@fuentis/phoenix-ui';
22
+
23
+ @Component({
24
+ standalone: true,
25
+ imports: [SidebarLayoutComponent]
26
+ })
27
+ ```