ai-react-animations 1.1.1 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,7 +6,7 @@ import { useEffect, useState } from 'react';
6
6
  * Relatable user scenario: AI reading, processing, delivering results
7
7
  */
8
8
 
9
- export default function AiCreating({ isLoading, onComplete, size = 'md' }) {
9
+ function AiCreating({ isLoading, onComplete, size = 'md' }) {
10
10
  const [stage, setStage] = useState('idle');
11
11
 
12
12
  useEffect(() => {
@@ -131,3 +131,5 @@ export default function AiCreating({ isLoading, onComplete, size = 'md' }) {
131
131
  </div>
132
132
  );
133
133
  }
134
+
135
+ export default AiCreating;
@@ -7,7 +7,7 @@ const iconMap = {
7
7
  zap: Zap,
8
8
  };
9
9
 
10
- export function AiCreating2({
10
+ function AiCreating2({
11
11
  isLoading,
12
12
  onComplete,
13
13
  message = "Creating your plan...",
@@ -181,4 +181,5 @@ export function AiCreating2({
181
181
  );
182
182
  }
183
183
 
184
- export default AiCreating2;
184
+
185
+ export default AiCreating2;