|
|
@ -9,6 +9,7 @@ import { getTimerOptions } from '../../../../state/selectors/timerOptions';
|
|
|
|
import { Flex } from '../../../basic/Flex';
|
|
|
|
import { Flex } from '../../../basic/Flex';
|
|
|
|
import { SessionButton } from '../../../basic/SessionButton';
|
|
|
|
import { SessionButton } from '../../../basic/SessionButton';
|
|
|
|
import { PanelButtonGroup } from '../../../buttons';
|
|
|
|
import { PanelButtonGroup } from '../../../buttons';
|
|
|
|
|
|
|
|
import { PanelLabel } from '../../../buttons/PanelButton';
|
|
|
|
import { PanelRadioButton } from '../../../buttons/PanelRadioButton';
|
|
|
|
import { PanelRadioButton } from '../../../buttons/PanelRadioButton';
|
|
|
|
import { SessionIconButton } from '../../../icon';
|
|
|
|
import { SessionIconButton } from '../../../icon';
|
|
|
|
|
|
|
|
|
|
|
@ -91,6 +92,8 @@ const TimeOptions = (props: TimerOptionsProps) => {
|
|
|
|
const { options, selected, setSelected } = props;
|
|
|
|
const { options, selected, setSelected } = props;
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
|
|
|
|
<>
|
|
|
|
|
|
|
|
<PanelLabel>{window.i18n('timer')}</PanelLabel>
|
|
|
|
<PanelButtonGroup>
|
|
|
|
<PanelButtonGroup>
|
|
|
|
{options.map((option: any) => (
|
|
|
|
{options.map((option: any) => (
|
|
|
|
<PanelRadioButton
|
|
|
|
<PanelRadioButton
|
|
|
@ -105,6 +108,7 @@ const TimeOptions = (props: TimerOptionsProps) => {
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
))}
|
|
|
|
</PanelButtonGroup>
|
|
|
|
</PanelButtonGroup>
|
|
|
|
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|