import { __ } from '@wordpress/i18n' import { usePagesStore } from '@onboarding/state/Pages' import { LeftArrowIcon } from '@onboarding/svg' export const SquareNextButton = () => { const { nextPage, currentPageIndex, pages } = usePagesStore() const currentPageKey = Array.from(pages.keys())[currentPageIndex] const pageState = pages.get(currentPageKey).state() return ( ) }