diff --git a/src/components/common/EmptyState.tsx b/src/components/common/EmptyState.tsx index 0e760bf..97c33ff 100644 --- a/src/components/common/EmptyState.tsx +++ b/src/components/common/EmptyState.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import { IonContent } from '@ionic/react'; import type { EmptyStateProps } from '../../types'; const EmptyState: React.FC = ({ @@ -9,7 +8,7 @@ const EmptyState: React.FC = ({ action }) => { return ( - +
{icon && (
@@ -30,7 +29,7 @@ const EmptyState: React.FC = ({
)}
- +
); };