import React from 'react'; import { clsx } from 'clsx'; import { Card, CardContent, CardHeader, CardTitle, CardDescription } from '@/components/ui/Card'; import { Separator } from '@/components/ui'; export interface SettingsSectionProps { title: string; description?: string; children: React.ReactNode; className?: string; actions?: React.ReactNode; } /** * Settings section component for settings pages */ export const SettingsSection = ({ title, description, children, className, actions, }: SettingsSectionProps) => { return (
{title} {description && {description}}
{actions &&
{actions}
}
{children}
); };