feat(ui): add SettingsNestedSection component for consistent nested settings

This commit is contained in:
Adam Shiervani 2025-08-12 14:30:19 +02:00
parent fb2ab7db17
commit ae317fdc5a
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
export default function SettingsNestedSection({
children,
}: {
children: React.ReactNode;
}) {
return (
<div className="ml-2 border-l border-slate-800/30 pl-4 dark:border-slate-300/30">
{children}
</div>
);
}