feat: tempcommit

This commit is contained in:
Maximilian Liebmann 2025-06-26 20:25:13 +02:00
parent 7691bd2fac
commit 6619f0a9eb
5 changed files with 190 additions and 71 deletions

View file

@ -3,20 +3,20 @@ import type * as React from 'react';
interface ScrollableSettingsWrapperProps {
className?: string;
legend?: string;
title?: string;
children: React.ReactNode;
}
export function GroupWrapper({
className,
legend,
title,
children,
}: ScrollableSettingsWrapperProps) {
return (
<fieldset
className={cn('space-t-4 p-4 border rounded-md shadow-md', className)}
>
<legend className='text-sm font-medium px-1'>{legend}</legend>
<legend className='text-sm font-medium px-1'>{title}</legend>
{children}
</fieldset>
);