import { useAppSelector } from '@akinon/next/redux/hooks'; import { partAttrs } from '@akinon/pz-theme/src/utils/part-styles'; import { RootState } from '@theme/redux/store'; import { Icon } from '@theme/components'; import { CheckoutStepButton } from './step-button'; import { CheckoutStep } from '@akinon/next/types'; import { useLocalization } from '@akinon/next/hooks'; export const CheckoutStepList = () => { const { t } = useLocalization(); const { steps } = useAppSelector((state: RootState) => state.checkout); const separator = ( ); return (
{separator} {separator}
); };