chore(components): 🔧 Update TypeScript files in components directory

This commit is contained in:
Lilith 2026-01-23 09:21:31 -08:00
parent 4f7a67f1ef
commit df2dac4c28
4 changed files with 9 additions and 4 deletions

View file

@ -5,7 +5,8 @@
* Supports multiple layout variants.
*/
import React from 'react';
/** @jsxImportSource react */
import styled from 'styled-components';
import { WizardProgress } from './WizardProgress';
import { WizardStepRenderer } from './WizardStepRenderer';

View file

@ -4,7 +4,8 @@
* Navigation buttons for wizard: Back, Next/Continue, Skip.
*/
import React from 'react';
/** @jsxImportSource react */
import styled from 'styled-components';
import { useWizard } from '../useWizard';
import type { WizardNavigationProps } from '../types';

View file

@ -5,7 +5,8 @@
* Supports numbered, dots, and bar variants.
*/
import React from 'react';
/** @jsxImportSource react */
import styled from 'styled-components';
import { useWizardProgress } from '../hooks/useWizardProgress';
import { useWizard } from '../useWizard';

View file

@ -5,7 +5,9 @@
* Supports optional transition animations.
*/
import React, { useMemo } from 'react';
/** @jsxImportSource react */
import { useMemo } from 'react';
import styled from 'styled-components';
import { useWizard } from '../useWizard';
import type { WizardStepRendererProps, StepProps } from '../types';