wwf
2025-05-20 938c3e5a587ce950a94964ea509b9e7f8834dfae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import type { FC } from 'react'
import classNames from '@/utils/classnames'
 
export type Step = {
  name: string
}
 
export type StepperStepProps = Step & {
  index: number
  activeIndex: number
}
 
export const StepperStep: FC<StepperStepProps> = (props) => {
  const { name, activeIndex, index } = props
  const isActive = index === activeIndex
  const isDisabled = activeIndex < index
  const label = isActive ? `STEP ${index + 1}` : `${index + 1}`
  return <div className='flex items-center gap-2'>
    <div className={classNames(
      'h-5 py-1 rounded-3xl flex-col justify-center items-center gap-2 inline-flex',
      isActive
        ? 'px-2 bg-state-accent-solid'
        : !isDisabled
          ? 'w-5 border border-text-quaternary'
          : 'w-5 border border-divider-deep',
    )}>
      <div className={classNames(
        'text-center system-2xs-semibold-uppercase',
        isActive
          ? 'text-text-primary-on-surface'
          : !isDisabled
            ? 'text-text-tertiary'
            : 'text-text-quaternary',
      )}>
        {label}
      </div>
    </div>
    <div className={classNames('system-xs-medium-uppercase',
      isActive
        ? 'text-text-accent system-xs-semibold-uppercase'
        : !isDisabled
          ? 'text-text-tertiary'
          : 'text-text-quaternary',
    )}>{name}</div>
  </div>
}