import type { PropsWithChildren, ReactNode } from 'react'; import { wrapper } from './share.css'; interface SettingWrapperProps { title?: ReactNode; } export const SettingWrapper = ({ title, children, }: PropsWithChildren) => { return (
{title ?
{title}
: null} {children}
); };