1234567891011121314151617181920212223242526 |
- import React from "react";
- import { ActionManager } from "../actions/manager";
- import { AppState } from "../types";
- import { DarkModeToggle } from "./DarkModeToggle";
- export const BackgroundPickerAndDarkModeToggle = ({
- appState,
- setAppState,
- actionManager,
- }: {
- actionManager: ActionManager;
- appState: AppState;
- setAppState: any;
- }) => (
- <div style={{ display: "flex" }}>
- {actionManager.renderAction("changeViewBackgroundColor")}
- <div style={{ marginInlineStart: "0.25rem" }}>
- <DarkModeToggle
- value={appState.appearance}
- onChange={(appearance) => {
- setAppState({ appearance });
- }}
- />
- </div>
- </div>
- );
|