@gothammm/hati
v0.0.4
Published
UI Component Library built for Solid.js
Downloads
8
Readme
Hati
A UI Component Library for Solid.js
A port of shadcn/ui to Solid.js
⚠ This is not ready for production!
This library is in very early stage, barely has any components ready for use, feel free to test run with the following setup.
Getting Started
Installation
$ pnpm install --save @gothammm/hati # or npm install --save @gothammm/hati
Usage
import type { Component } from "solid-js";
import { Button } from "@gothammm/hati";
const MyComponent = (): Component => {
return <Button variant="primary">Primary</Button>
};
Contribute
Install dependencies
$ pnpm install # or npm install or yarn install
To run the test app
$ pnpm app:dev