mirror of
https://github.com/mue/mue.git
synced 2026-07-17 14:04:09 +02:00
12 lines
368 B
JavaScript
12 lines
368 B
JavaScript
export default 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>
|
|
);
|
|
}
|