Files
Memoh/packages/ui
Acbox 4ec4c76f9c fix(ui): remove unwanted borders on CollapsibleContent children
The child-selector border styles (*:border-b *:border-x etc.) on
CollapsibleContent caused unexpected white outlines around thinking
blocks and tool-call detail panels in chat messages.
2026-03-29 19:48:19 +08:00
..
2026-01-29 14:57:18 +08:00
2026-01-09 12:33:04 +08:00
2026-01-09 12:33:04 +08:00
2026-03-29 16:30:15 +08:00

@memohai/ui

UI components for Memoh.

Installation

npm install @memohai/ui

Usage

Import the CSS file in your style.css file.

@import "tailwindcss";
@import "tw-animate-css";
@import "@memohai/ui/style.css";

And then you can use the components in your Vue components.

<script setup>
import { Button } from '@memohai/ui';
</script>

<template>
  <Button>Click me</Button>
</template>