From c07c07699de9553dd2bffad0b99d7dc4a970b12c Mon Sep 17 00:00:00 2001 From: bhscer <129813414+bhscer@users.noreply.github.com> Date: Thu, 15 Jan 2026 03:22:26 +0800 Subject: [PATCH 1/2] fix: 'ThemedDivider' in TAILWIND.md --- TAILWIND.md | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/TAILWIND.md b/TAILWIND.md index e937bed7..d2b0489e 100644 --- a/TAILWIND.md +++ b/TAILWIND.md @@ -51,9 +51,26 @@ Create a themed divider component using shadcn's `cn` utility: import { cn } from '@/lib/utils'; import type { DividerProps } from 'react-split-pane'; -function ThemedDivider({ direction, isDragging, disabled, ...props }: DividerProps) { +function ThemedDivider(props: DividerProps) { + const { + direction, + isDragging, + disabled, + onMouseDown, + onTouchStart, + onTouchEnd, + onKeyDown, + } = props; + return (
- ); + > + + + ) }