aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/toggle/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui/toggle/index.tsx')
-rw-r--r--src/components/ui/toggle/index.tsx14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/components/ui/toggle/index.tsx b/src/components/ui/toggle/index.tsx
index 48f68943b..275d28bf6 100644
--- a/src/components/ui/toggle/index.tsx
+++ b/src/components/ui/toggle/index.tsx
@@ -9,13 +9,6 @@ import Label from '../label';
9import { IFormField } from '../typings/generic'; 9import { IFormField } from '../typings/generic';
10import Wrapper from '../wrapper'; 10import Wrapper from '../wrapper';
11 11
12interface IProps
13 extends InputHTMLAttributes<HTMLInputElement>,
14 IFormField,
15 WithStylesProps<typeof styles> {
16 className?: string;
17}
18
19const buttonTransition: string = window?.matchMedia( 12const buttonTransition: string = window?.matchMedia(
20 '(prefers-reduced-motion: no-preference)', 13 '(prefers-reduced-motion: no-preference)',
21) 14)
@@ -62,6 +55,13 @@ const styles = (theme: Theme) => ({
62 }, 55 },
63}); 56});
64 57
58interface IProps
59 extends InputHTMLAttributes<HTMLInputElement>,
60 IFormField,
61 WithStylesProps<typeof styles> {
62 className?: string;
63}
64
65class Toggle extends Component<IProps> { 65class Toggle extends Component<IProps> {
66 render(): ReactElement { 66 render(): ReactElement {
67 const { 67 const {