Compare commits
No commits in common. "6f99e4b08e9c5363f6fcb22cbc589901bd3d6f3b" and "0cad100197bcd515b83e374f7477cbb58a2ee9e4" have entirely different histories.
6f99e4b08e
...
0cad100197
|
|
@ -1,9 +1,6 @@
|
|||
# 🐺 howl
|
||||
|
||||
Howl is a fork of `werewolf-ui`, without any Tailwind.
|
||||
|
||||
A minimal, single-dependency component library built on forge
|
||||
for hype/hono.
|
||||
Howl is a fork of `werewolf-ui`, without any Tailwind. A minimal, zero-dependency React component library.
|
||||
|
||||
## Installation
|
||||
|
||||
|
|
|
|||
|
|
@ -7,14 +7,14 @@
|
|||
"dev": "bun run --hot test/server.tsx"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bun": "latest",
|
||||
"hono": "^4.10.7"
|
||||
"@types/bun": "latest"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": "^5"
|
||||
},
|
||||
"dependencies": {
|
||||
"forge": "git+https://git.nose.space/defunkt/forge",
|
||||
"hono": "^4.10.7",
|
||||
"lucide-static": "^0.555.0"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,3 +1,6 @@
|
|||
import "hono/jsx"
|
||||
import type { JSX } from "hono/jsx"
|
||||
|
||||
export type TailwindSize = 0 | 0.5 | 1 | 1.5 | 2 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96
|
||||
|
||||
/**
|
||||
|
|
@ -6,6 +9,6 @@ export type TailwindSize = 0 | 0.5 | 1 | 1.5 | 2 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7
|
|||
export type CommonHTMLProps = {
|
||||
class?: string
|
||||
id?: string
|
||||
style?: Record<string, unknown>
|
||||
style?: JSX.CSSProperties
|
||||
ref?: any
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user