@ravenopsnet/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 +23 -0
- package/dist/index.css +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +40132 -0
- package/dist/vite.svg +1 -0
- package/package.json +73 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# RAVEN UI
|
|
2
|
+
|
|
3
|
+
## Setup
|
|
4
|
+
|
|
5
|
+
To install, run the following command:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm add @ravenopsnet/ui
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Import `styles.css` in your base CSS file:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
@import "@ravenopsnet/ui/styles.css";
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Using components
|
|
18
|
+
|
|
19
|
+
To use the components in your app, import them as follows:
|
|
20
|
+
|
|
21
|
+
```tsx
|
|
22
|
+
import { Button } from "@ravenopsnet/ui"
|
|
23
|
+
```
|