mue/src/components/modals/main/settings/SettingsItem.jsx

16 lines
420 B
React
Raw Normal View History

2022-10-30 16:56:26 +00:00
import { memo } from 'react';
function SettingsItem(props) {
return (
<div className={props.final ? 'settingsRow settingsNoBorder' : 'settingsRow'}>
<div className="content">
<span className="title">{props.title}</span>
<span className="subtitle">{props.subtitle}</span>
</div>
<div className="action">{props.children}</div>
</div>
);
}
2022-10-30 16:56:26 +00:00
2022-11-06 11:59:59 +00:00
export default memo(SettingsItem);