@skedulo/breeze-ui 0.1.6 → 0.1.7

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,22 @@
1
+ # Breeze UI
2
+
3
+ Breeze UI is a component library built for use within Skedulo web applications.
4
+
5
+ ## Installation
6
+
7
+ ```shell
8
+ npm install @skedulo/breeze-ui
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ Simply import the library in the entry file of your application and use the components anywhere in HTML templates.
14
+
15
+ ```ts
16
+ // main.ts
17
+ import '@skedulo/breeze-ui'
18
+ ```
19
+
20
+ ```html
21
+ <sp-button>Hello world</sp-button>
22
+ ```