Initial commit

This commit is contained in:
xggz
2026-03-06 22:56:13 +08:00
commit 54d1097b41
273 changed files with 92457 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
"use client"
interface DropdownRadioItemContentProps {
label: string
description?: string | null
}
export function DropdownRadioItemContent({
label,
description,
}: DropdownRadioItemContentProps) {
const normalizedDescription = description?.trim()
return (
<div className="w-full min-w-0 pr-2">
<p className="truncate">{label}</p>
{normalizedDescription ? (
<p className="text-muted-foreground mt-0.5 text-xs leading-snug whitespace-pre-wrap wrap-break-word">
{normalizedDescription}
</p>
) : null}
</div>
)
}