import type { ReactNode } from 'react'; import { Col, Row } from 'antd'; import './SettingListItem.css'; interface SettingListItemProps { paddings?: 'small' | 'default'; title?: ReactNode; description?: ReactNode; children?: ReactNode; control?: ReactNode; } export default function SettingListItem({ paddings = 'default', title, description, children, control, }: SettingListItemProps) { const padding = paddings === 'small' ? '10px 20px' : '20px'; return (