Go to file
2025-11-30 08:43:53 -08:00
src dark mode and such 2025-11-30 08:43:53 -08:00
test dark mode and such 2025-11-30 08:43:53 -08:00
.gitignore howl 2025-11-29 13:50:17 -08:00
bun.lock howl 2025-11-29 13:50:17 -08:00
CLAUDE.md howl 2025-11-29 13:50:17 -08:00
package.json docs 2025-11-29 22:44:51 -08:00
README.md gucci 2025-11-29 22:38:15 -08:00
tsconfig.json howl 2025-11-29 13:50:17 -08:00

🐺 howl

Howl is a fork of werewolf-ui, without any Tailwind. A minimal, zero-dependency React component library.

Installation

bun install howl

Usage

import { Button, VStack, Text } from "howl"

function App() {
  return (
    <VStack>
      <Text>Hello, world!</Text>
      <Button>Click me</Button>
    </VStack>
  )
}

Components

  • Avatar - Profile image component
  • Box - Container components (Box, RedBox, GreenBox, BlueBox, GrayBox)
  • Button - Button component
  • Divider - Horizontal divider
  • Grid - Grid layout
  • Icon - Icon display using lucide-static
  • IconLink - Icon with link functionality
  • Image - Image component
  • Input - Text input field
  • Placeholder - Placeholder component
  • Section - Section container
  • Select - Dropdown select input
  • Stack - Layout components (VStack, HStack)
  • Text - Text components (H1, H2, H3, H4, H5, Text, SmallText)

Development

bun install
bun dev