From 3f04f9130e263798e6e0e7aa0c01af0768b84acc Mon Sep 17 00:00:00 2001 From: Saurabh Daware Date: Thu, 25 Apr 2024 10:15:51 +0530 Subject: [PATCH] fix: eslint issues --- packages/blade/src/components/Alert/Alert.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/blade/src/components/Alert/Alert.tsx b/packages/blade/src/components/Alert/Alert.tsx index c399769d217..1eb0d4ea530 100644 --- a/packages/blade/src/components/Alert/Alert.tsx +++ b/packages/blade/src/components/Alert/Alert.tsx @@ -2,12 +2,12 @@ import type { ReactChild, ReactElement } from 'react'; import { Fragment, useState } from 'react'; import { StyledAlert } from './StyledAlert'; +import type { IconComponent } from '~components/Icons'; import { AlertOctagonIcon, AlertTriangleIcon, CheckCircleIcon, CloseIcon, - IconComponent, InfoIcon, } from '~components/Icons'; import { castNativeType, castWebType, useBreakpoint, getPlatformType } from '~utils';