A UI Component Library for Solid.js
A port of shadcn/ui to Solid.js
This library is in very early stage, barely has any components ready for use, feel free to test run with the following setup.
$ pnpm install --save @gothammm/hati # or npm install --save @gothammm/hati
import type { Component } from "solid-js";
// Import styles
import "@gothammm/hati/styles.css";
import { Button } from "@gothammm/hati";
const MyComponent = (): Component => {
return <Button variant="primary">Primary</Button>
};
This is a monorepo build with turbo
$ pnpm install # or npm install or yarn install
$ turbo dev