import type { PropsWithChildren } from 'react'; import { Card } from '../../../components/Card'; export const SettingCard: React.FC = ({ children }) => { return ( {children} ); };