import type { FC, HTMLAttributes } from 'react';
import { settingHeader } from './share.css';
export const SettingHeader: FC<
{ title: string; subtitle?: string } & Omit<
HTMLAttributes,
'title'
>
> = ({ title, subtitle, ...otherProps }) => {
return (
);
};