mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-04-14 05:51:02 +08:00
9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
import { ListItem, styled } from "@mui/material";
|
|
|
|
const SettingItem = styled(ListItem)(() => ({
|
|
paddingTop: 5,
|
|
paddingBottom: 5,
|
|
}));
|
|
|
|
export default SettingItem;
|