mirror of
https://github.com/documenso/documenso.git
synced 2026-07-11 05:25:08 +10:00
29 lines
748 B
TypeScript
29 lines
748 B
TypeScript
import { cn } from '@documenso/ui/lib/utils';
|
|
import type React from 'react';
|
|
|
|
export type SettingsHeaderProps = {
|
|
title: string | React.ReactNode;
|
|
subtitle: string | React.ReactNode;
|
|
hideDivider?: boolean;
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
};
|
|
|
|
export const SettingsHeader = ({ children, title, subtitle, className, hideDivider }: SettingsHeaderProps) => {
|
|
return (
|
|
<>
|
|
<div className={cn('flex flex-row items-center justify-between', className)}>
|
|
<div>
|
|
<h3 className="font-medium text-lg">{title}</h3>
|
|
|
|
<p className="text-muted-foreground text-sm md:mt-2">{subtitle}</p>
|
|
</div>
|
|
|
|
{children}
|
|
</div>
|
|
|
|
{!hideDivider && <hr className="my-4" />}
|
|
</>
|
|
);
|
|
};
|