mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-04-12 00:21:30 +00:00
26 lines
672 B
TypeScript
26 lines
672 B
TypeScript
import type { ReactNode } from 'react';
|
|
import { cn } from '../../../lib/utils';
|
|
|
|
type SettingsSectionProps = {
|
|
title: string;
|
|
description?: string;
|
|
children: ReactNode;
|
|
className?: string;
|
|
};
|
|
|
|
export default function SettingsSection({ title, description, children, className }: SettingsSectionProps) {
|
|
return (
|
|
<div className={cn('space-y-3', className)}>
|
|
<div>
|
|
<h3 className="text-sm font-semibold uppercase tracking-wider text-muted-foreground">
|
|
{title}
|
|
</h3>
|
|
{description && (
|
|
<p className="mt-1 text-sm text-muted-foreground">{description}</p>
|
|
)}
|
|
</div>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|