import React from 'react'; export type SettingsHeaderProps = { title: string; subtitle: string; children?: React.ReactNode; }; export const SettingsHeader = ({ children, title, subtitle }: SettingsHeaderProps) => { return ( <>
{subtitle}