@doom-ui/components
Version:
React components for the Doom UI library.
36 lines (26 loc) • 735 B
Markdown
# -ui/components
React components for the Doom UI library.
> **This package is still under development and is not yet ready for production use.**
## Installation
```bash
npm install -ui/components -ui/core
yarn add -ui/components -ui/core
pnpm add -ui/components -ui/core
bun add -ui/components -ui/core
deno add -ui/components -ui/core
```
## Usage
```typescript
import { Button } from "@doom-ui/components";
import { ThemeProvider } from "@doom-ui/core";
function App() {
return (
<ThemeProvider>
<Button>Click me</Button>
</ThemeProvider>
);
}
```
## Components
- Button
- [List other components as they are added]