(props: {
children: React.ReactNode;
description?: string;
name: string;
})
| 421 | } |
| 422 | |
| 423 | function SettingGroup(props: { |
| 424 | children: React.ReactNode; |
| 425 | description?: string; |
| 426 | name: string; |
| 427 | }) { |
| 428 | const { children, description, name } = props; |
| 429 | |
| 430 | return ( |
| 431 | <SettingsSection id={name} name={name} description={description ?? ""}> |
| 432 | <div className={cl("group")}> |
| 433 | {children} |
| 434 | </div> |
| 435 | </SettingsSection> |
| 436 | ); |
| 437 | } |
| 438 | |
| 439 | function SettingSwitch(props: { |
| 440 | checked: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected