From 2f3f2ae7f098376f535e5aa993c9eedc14e36f5d Mon Sep 17 00:00:00 2001 From: Vijay A Date: Fri, 22 Mar 2024 02:33:33 +0530 Subject: Upgrade node modules --- src/components/ui/button/index.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'src/components/ui/button/index.tsx') diff --git a/src/components/ui/button/index.tsx b/src/components/ui/button/index.tsx index 3247072a9..5c606f274 100644 --- a/src/components/ui/button/index.tsx +++ b/src/components/ui/button/index.tsx @@ -1,14 +1,14 @@ /* eslint-disable no-use-before-define */ import Icon from '@mdi/react'; import classnames from 'classnames'; -import { Property } from 'csstype'; +import type { Property } from 'csstype'; import { noop } from 'lodash'; -import { Component, MouseEventHandler } from 'react'; -import withStyles, { WithStylesProps } from 'react-jss'; -import Loader from '../loader/index'; -import { Theme } from '../../../themes'; -import { IFormField } from '../typings/generic'; +import { Component, type MouseEventHandler } from 'react'; +import withStyles, { type WithStylesProps } from 'react-jss'; import { DEFAULT_LOADER_COLOR } from '../../../config'; +import type { Theme } from '../../../themes'; +import Loader from '../loader/index'; +import type { IFormField } from '../typings/generic'; type ButtonType = | 'primary' @@ -206,7 +206,6 @@ class ButtonComponent extends Component { ); const wrapperComponent = href ? ( - // biome-ignore lint/a11y/useValidAnchor: