@dxc-technology/halstack-react 0.0.0-007927e

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,46 @@
1
+ <p align="center">
2
+ <a href="https://developer.dxc.com/halstack/">
3
+ <img src="apps/website/screens/common/images/halstack_logo.svg" alt="Halstack Design System logo" />
4
+ </a>
5
+ </p>
6
+
7
+ <h1 align="center">Halstack Design System</h1>
8
+
9
+ Halstack is an Open Source Design System built and maintained by DXC Technology with the purpose of providing all the necessary tools for designing and implementing accessible, intuitive and consistent User Experiences with React.
10
+
11
+ ## How to start
12
+
13
+ You can start using Halstack right now:
14
+
15
+ ```bash
16
+ npm i @dxc-technology/halstack-react
17
+ ```
18
+
19
+ ### Usage
20
+
21
+ ```jsx
22
+ import { DxcButton, DxcTextInput } from "@dxc-technology/halstack-react";
23
+
24
+ const App = () => (
25
+ <>
26
+ <DxcTextInput label="Enter your name" />
27
+ <DxcButton label="Submit" type="submit" />
28
+ </>
29
+ );
30
+ ```
31
+
32
+ ## Where to start
33
+
34
+ Learn everything you need to know about Halstack principles and components on the [official documentation site](https://developer.dxc.com/halstack/).
35
+
36
+ ## Contributing
37
+
38
+ Any feedback is always welcome in Halstack!
39
+
40
+ Before opening a new issue, pull request or discussion, please read carefully and respect our [contribution guidelines](https://github.com/dxc-technology/halstack-react/wiki/Contributing).
41
+
42
+ ## Thanks
43
+
44
+ <a href="https://www.chromatic.com/"><img src="https://user-images.githubusercontent.com/321738/84662277-e3db4f80-af1b-11ea-88f5-91d67a5e59f6.png" width="153" height="30" alt="Chromatic" /></a>
45
+
46
+ Thanks to [Chromatic](https://www.chromatic.com/) for providing the visual testing platform that helps us review UI changes and catch visual regressions.