integra-ng 2.1.0

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,32 @@
1
+
2
+
3
+ # Integra NG
4
+
5
+ A modern Angular component library for enterprise apps.
6
+
7
+ ## Project Website
8
+
9
+ [angular.integra.web.za](https://angular.integra.web.za)
10
+
11
+ ## Installation
12
+
13
+ ```bash
14
+ npm install integra-ng
15
+ ```
16
+
17
+
18
+ ## Usage
19
+
20
+ Import the card component in your TypeScript:
21
+
22
+ ```typescript
23
+ import { ICard } from 'integra-ng';
24
+ ```
25
+
26
+ Use the card in your template:
27
+
28
+ ```html
29
+ <i-card [title]="'Card Title'">
30
+ Card content goes here.
31
+ </i-card>
32
+ ```