@ryanodd/design-system 0.0.0-dev1 → 0.0.0-dev2
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 +17 -0
- package/dist/cjs/index.js +923 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/esm/index.d.ts +148 -0
- package/dist/esm/index.js +870 -0
- package/dist/esm/index.js.map +1 -0
- package/package.json +4 -1
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Ryan Odd's Design System
|
|
2
|
+
|
|
3
|
+
Components & ways of doing things. Built on [Radix UI](https://www.radix-ui.com/primitives/docs/overview/introduction).
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @ryanodd/design-system
|
|
9
|
+
|
|
10
|
+
yarn add @ryanodd/design-system
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Publishing
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm publish
|
|
17
|
+
```
|