import React from "react"; import { List, ListItem, ListSubheader, styled } from "@mui/material"; export const SettingItem = styled(ListItem)(() => ({ paddingTop: 5, paddingBottom: 5, })); export const SettingList: React.FC<{ title: string; }> = (props) => ( {props.title} {props.children} );