aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/button
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui/button')
-rw-r--r--src/components/ui/button/index.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/ui/button/index.tsx b/src/components/ui/button/index.tsx
index 1b648b1d5..3c31ca952 100644
--- a/src/components/ui/button/index.tsx
+++ b/src/components/ui/button/index.tsx
@@ -1,3 +1,4 @@
1/* eslint-disable no-use-before-define */
1import Icon from '@mdi/react'; 2import Icon from '@mdi/react';
2import classnames from 'classnames'; 3import classnames from 'classnames';
3import { Property } from 'csstype'; 4import { Property } from 'csstype';
@@ -135,7 +136,7 @@ interface IProps extends IFormField, WithStylesProps<typeof styles> {
135 label?: string; 136 label?: string;
136 disabled?: boolean; 137 disabled?: boolean;
137 id?: string; 138 id?: string;
138 type?: 'button' | 'reset' | 'submit' | undefined; 139 type?: 'button' | 'reset' | 'submit';
139 onClick?: MouseEventHandler<HTMLInputElement>; 140 onClick?: MouseEventHandler<HTMLInputElement>;
140 buttonType?: ButtonType; 141 buttonType?: ButtonType;
141 loaded?: boolean; 142 loaded?: boolean;