React components for the Doom UI library.
This package is still under development and is not yet ready for production use.
npm install @doom-ui/components @doom-ui/core
yarn add @doom-ui/components @doom-ui/core
pnpm add @doom-ui/components @doom-ui/core
bun add @doom-ui/components @doom-ui/core
deno add @doom-ui/components @doom-ui/core
import { Button } from "@doom-ui/components";
import { ThemeProvider } from "@doom-ui/core";
function App() {
return (
<ThemeProvider>
<Button>Click me</Button>
</ThemeProvider>
);
}
- Button
- [List other components as they are added]