aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/webControls/components/WebControls.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/webControls/components/WebControls.tsx')
-rw-r--r--src/features/webControls/components/WebControls.tsx18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/features/webControls/components/WebControls.tsx b/src/features/webControls/components/WebControls.tsx
index 54f45c843..aee568a7d 100644
--- a/src/features/webControls/components/WebControls.tsx
+++ b/src/features/webControls/components/WebControls.tsx
@@ -1,14 +1,18 @@
1import { createRef, Component, ReactElement, RefObject } from 'react';
2import { observer } from 'mobx-react';
3import withStyles, { WithStylesProps } from 'react-jss';
4import { defineMessages, injectIntl, WrappedComponentProps } from 'react-intl';
5import { 1import {
6 mdiReload,
7 mdiArrowRight,
8 mdiArrowLeft, 2 mdiArrowLeft,
9 mdiHomeOutline, 3 mdiArrowRight,
10 mdiEarth, 4 mdiEarth,
5 mdiHomeOutline,
6 mdiReload,
11} from '@mdi/js'; 7} from '@mdi/js';
8import { observer } from 'mobx-react';
9import { Component, type ReactElement, type RefObject, createRef } from 'react';
10import {
11 type WrappedComponentProps,
12 defineMessages,
13 injectIntl,
14} from 'react-intl';
15import withStyles, { type WithStylesProps } from 'react-jss';
12import { Tooltip as ReactTooltip } from 'react-tooltip'; 16import { Tooltip as ReactTooltip } from 'react-tooltip';
13import Icon from '../../../components/ui/icon'; 17import Icon from '../../../components/ui/icon';
14 18