aboutsummaryrefslogtreecommitdiffstats
path: root/packages/forms/src/button
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-07-30 01:48:45 +0000
committerLibravatar GitHub <noreply@github.com>2021-07-30 07:18:45 +0530
commitd60087cd90fc4ea5c14afbc16c9b938df3ad3974 (patch)
tree7e2fa3e763590b00b4f0f11cd67316ece899e81b /packages/forms/src/button
parentUpgraded 'electron-builder' to '22.11.10'. (diff)
downloadferdium-app-d60087cd90fc4ea5c14afbc16c9b938df3ad3974.tar.gz
ferdium-app-d60087cd90fc4ea5c14afbc16c9b938df3ad3974.tar.zst
ferdium-app-d60087cd90fc4ea5c14afbc16c9b938df3ad3974.zip
Within the packages, use relative paths for imports. (#1705)
Diffstat (limited to 'packages/forms/src/button')
-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