aboutsummaryrefslogtreecommitdiffstats
path: root/packages/forms/src/button/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/forms/src/button/index.tsx')
-rw-r--r--packages/forms/src/button/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/forms/src/button/index.tsx b/packages/forms/src/button/index.tsx
index 0d036293a..ecb2876ca 100644
--- a/packages/forms/src/button/index.tsx
+++ b/packages/forms/src/button/index.tsx
@@ -1,5 +1,4 @@
1import Icon from '@mdi/react'; 1import Icon from '@mdi/react';
2import { Theme } from '@meetfranz/theme';
3import classnames from 'classnames'; 2import classnames from 'classnames';
4import { Property } from 'csstype'; 3import { Property } from 'csstype';
5import React, { Component } from 'react'; 4import React, { Component } from 'react';
@@ -7,6 +6,7 @@ import injectStyle, { withTheme } from 'react-jss';
7import Loader from 'react-loader'; 6import Loader from 'react-loader';
8 7
9import { IFormField, IWithStyle } from '../typings/generic'; 8import { IFormField, IWithStyle } from '../typings/generic';
9import { Theme } from '../../../theme';
10 10
11type ButtonType = 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'inverted'; 11type ButtonType = 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'inverted';
12 12