@lglab/compose-ui 0.9.0 → 0.9.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 +8 -33
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,39 +1,14 @@
|
|
|
1
|
+
# Compose UI
|
|
1
2
|
|
|
2
|
-
|
|
3
|
+

|
|
3
4
|
|
|
5
|
+
Base UI accessibility meets Tailwind flexibility. Accessible React components
|
|
6
|
+
you can npm install and start using immediately.
|
|
4
7
|
|
|
5
|
-
##
|
|
8
|
+
## Documentation
|
|
6
9
|
|
|
7
|
-
|
|
8
|
-
pnpm add @lglab/compose-ui
|
|
9
|
-
```
|
|
10
|
+
To get started, check out the [Compose UI documentation](https://www.compose-ui.dev/overview/quick-start).
|
|
10
11
|
|
|
11
|
-
|
|
12
|
+
## License
|
|
12
13
|
|
|
13
|
-
|
|
14
|
-
npm i @lglab/compose-ui
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
or
|
|
18
|
-
|
|
19
|
-
```
|
|
20
|
-
yarn add @lglab/compose-ui
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
or
|
|
24
|
-
|
|
25
|
-
```
|
|
26
|
-
bun add @lglab/compose-ui
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
## Quick Start
|
|
30
|
-
|
|
31
|
-
```
|
|
32
|
-
import { Button } from '@lglab/compose-ui'
|
|
33
|
-
|
|
34
|
-
const Page = () => {
|
|
35
|
-
return (
|
|
36
|
-
<Button>Click</Button>
|
|
37
|
-
);
|
|
38
|
-
}
|
|
39
|
-
```
|
|
14
|
+
Licensed under the [MIT license](https://github.com/LGLabGreg/compose-ui/blob/main/LICENSE.md).
|